Files
UnrealEngineUWP/Engine/Source/Programs/AutomationTool/Gauntlet/Unreal/Base/Gauntlet.UnrealProcessResult.cs
ben salem 4a662bbbac Fix Gauntlet throwing an InitializationFailed error when a process fails to log in.
#rb brendan.lienau, j.baumgartner

[CL 21864920 by ben salem in ue5-main branch]
2022-09-07 18:12:06 -04:00

21 lines
886 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace Gauntlet
{
/// <summary>
/// Describes reasons an Unreal process may have exited
/// </summary>
public enum UnrealProcessResult
{
ExitOk, // No known issues
InitializationFailure, // Process failed to initialize (e.g. the editor or game failed to load)
EncounteredFatalError, // A fatal error occurred
EncounteredEnsure, // An ensure occurred (will only be returned if the test considers ensures as fatal)
LoginFailed, // Client never successfully logged in.
TimeOut, // A timeout occurred
TestFailure, // A test is known to have failed
UnrealError, // Unreal exited with an error code unrelated to test issues
Unknown, // Something not in the above
}
}