refactor: correct naming of enum class constants 2/n

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2023-12-11 11:02:15 +00:00
committed by Compute-Runtime-Automation
parent 5eda5f2488
commit beafea9b39
116 changed files with 521 additions and 521 deletions

View File

@@ -142,10 +142,10 @@ TEST_F(PlatformTest, givenMidThreadPreemptionWhenInitializingPlatformThenCallGet
executionEnvironment->prepareRootDeviceEnvironments(1);
executionEnvironment->rootDeviceEnvironments[0]->builtins.reset(builtIns);
EXPECT_EQ(SipKernelType::COUNT, MockSipData::calledType);
EXPECT_EQ(SipKernelType::count, MockSipData::calledType);
EXPECT_FALSE(MockSipData::called);
pPlatform->initializeWithNewDevices();
EXPECT_EQ(SipKernelType::Csr, MockSipData::calledType);
EXPECT_EQ(SipKernelType::csr, MockSipData::calledType);
EXPECT_TRUE(MockSipData::called);
}
@@ -158,10 +158,10 @@ TEST_F(PlatformTest, givenDisabledPreemptionAndNoSourceLevelDebuggerWhenInitiali
executionEnvironment->prepareRootDeviceEnvironments(1);
executionEnvironment->rootDeviceEnvironments[0]->builtins.reset(builtIns);
EXPECT_EQ(SipKernelType::COUNT, MockSipData::calledType);
EXPECT_EQ(SipKernelType::count, MockSipData::calledType);
EXPECT_FALSE(MockSipData::called);
pPlatform->initializeWithNewDevices();
EXPECT_EQ(SipKernelType::COUNT, MockSipData::calledType);
EXPECT_EQ(SipKernelType::count, MockSipData::calledType);
EXPECT_FALSE(MockSipData::called);
}