refactor: correct naming of enum class constants 4/n

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2023-12-12 11:37:31 +00:00
committed by Compute-Runtime-Automation
parent 01dd503e47
commit 432142c574
86 changed files with 314 additions and 314 deletions

View File

@@ -499,7 +499,7 @@ TEST(DebugBindlessSip, givenOfflineDebuggingModeWhenGettingSipForContextThenCorr
auto builtIns = new NEO::MockBuiltins();
builtIns->callBaseGetSipKernel = true;
executionEnvironment->rootDeviceEnvironments[0]->builtins.reset(builtIns);
executionEnvironment->setDebuggingMode(DebuggingMode::Offline);
executionEnvironment->setDebuggingMode(DebuggingMode::offline);
const uint32_t contextId = 0u;
std::unique_ptr<OsContext> osContext(OsContext::create(executionEnvironment->rootDeviceEnvironments[0]->osInterface.get(),
@@ -629,7 +629,7 @@ TEST(DebugBindlessSip, givenOfflineDebuggingModeWhenSipIsInitializedThenBinaryIs
auto builtIns = new NEO::MockBuiltins();
builtIns->callBaseGetSipKernel = true;
executionEnvironment->rootDeviceEnvironments[0]->builtins.reset(builtIns);
executionEnvironment->setDebuggingMode(DebuggingMode::Offline);
executionEnvironment->setDebuggingMode(DebuggingMode::offline);
auto osContext = std::make_unique<OsContextMock>(0, EngineDescriptorHelper::getDefaultDescriptor({aub_stream::ENGINE_RCS, EngineUsage::regular}));
osContext->debuggableContext = true;
@@ -666,7 +666,7 @@ TEST(DebugBindlessSip, givenOfflineDebuggingModeAndInvalidSipWhenSipIsInitialize
auto builtIns = new NEO::MockBuiltins();
builtIns->callBaseGetSipKernel = true;
executionEnvironment->rootDeviceEnvironments[0]->builtins.reset(builtIns);
executionEnvironment->setDebuggingMode(DebuggingMode::Offline);
executionEnvironment->setDebuggingMode(DebuggingMode::offline);
auto osContext = std::make_unique<OsContextMock>(0, EngineDescriptorHelper::getDefaultDescriptor({aub_stream::ENGINE_RCS, EngineUsage::regular}));
osContext->debuggableContext = true;
@@ -703,7 +703,7 @@ TEST(DebugBindlessSip, givenOfflineDebuggingModeWhenDebugSipForContextIsCreatedT
auto builtIns = new NEO::MockBuiltins();
builtIns->callBaseGetSipKernel = true;
executionEnvironment->rootDeviceEnvironments[0]->builtins.reset(builtIns);
executionEnvironment->setDebuggingMode(DebuggingMode::Offline);
executionEnvironment->setDebuggingMode(DebuggingMode::offline);
auto osContext = std::make_unique<OsContextMock>(0, EngineDescriptorHelper::getDefaultDescriptor({aub_stream::ENGINE_RCS, EngineUsage::regular}));
osContext->debuggableContext = true;