mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-06 10:26:29 +08:00
refactor: correct naming of enum class constants 2/n
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
5eda5f2488
commit
beafea9b39
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user