Automation.SkipStackWalk

Automation.SkipStackWalk

#Overview

name: Automation.SkipStackWalk

This variable is created as a Console Variable (cvar).

It is referenced in 2 C++ source files.

#Summary

#References in C++ code

#Callsites

This variable is referenced in the following C++ source code:

#Loc: <Workspace>/Engine/Source/Runtime/Core/Private/Misc/AutomationTest.cpp:35

Scope (from outer to inner):

file
namespace    AutomationTest

Source code excerpt:

	static bool bSkipStackWalk = false;
	static FAutoConsoleVariableRef CVarAutomationSkipStackWalk(
		TEXT("Automation.SkipStackWalk"),
		bSkipStackWalk,
		TEXT("Whether to skip any stack issues that the automation test framework triggers"));

	static bool bLogBPTestMetadata = false;
	static FAutoConsoleVariableRef CVarAutomationLogBPTestMetadata(
		TEXT("Automation.LogBPTestMetadata"),

#Loc: <Workspace>/Engine/Source/Developer/AutomationController/Private/AutomationCommandline.cpp:518

Scope (from outer to inner):

file
class        class FAutomationExecCmd : private FSelfRegisteringExec
function     virtual bool Exec_Dev

Source code excerpt:

		if (FParse::Command(&Cmd, TEXT("Automation")))
		{
			// Early exit in case of a CVar input. ie: Automation.SkipStackWalk 1
			if (FString(Cmd).StartsWith(TEXT(".")))
			{
				return false;
			}

			// Track whether we have a flag we care about passing through.