ULT renaming: Shared Platform-specific tests

Related-To: NEO-2236

Signed-off-by: Adam Cetnerowski <adam.cetnerowski@intel.com>
This commit is contained in:
Adam Cetnerowski
2021-05-25 19:57:58 +00:00
committed by Compute-Runtime-Automation
parent 843c332c7e
commit fdfb25b85e
3 changed files with 5 additions and 5 deletions

View File

@@ -20,7 +20,7 @@ using namespace NEO;
using CommandEncoderTest = Test<DeviceFixture>;
GEN12LPTEST_F(CommandEncoderTest, givenAdjustStateComputeModeStateComputeModeShowsNonCoherencySet) {
GEN12LPTEST_F(CommandEncoderTest, givenAdjustStateComputeModeThenStateComputeModeShowsNonCoherencySet) {
using STATE_COMPUTE_MODE = typename FamilyType::STATE_COMPUTE_MODE;
using FORCE_NON_COHERENT = typename STATE_COMPUTE_MODE::FORCE_NON_COHERENT;

View File

@@ -49,7 +49,7 @@ GEN9TEST_F(PreambleTestGen9, givenKernelDebuggingActiveAndDisabledPreemptionWhen
SourceLevelDebuggerPreambleTest<FamilyType>::givenKernelDebuggingActiveAndDisabledPreemptionWhenGetAdditionalCommandsSizeIsCalledThen2MiLoadRegisterImmCmdsAreInlcudedTest();
}
GEN9TEST_F(PreambleTestGen9, givenGen9IsL3Programing) {
GEN9TEST_F(PreambleTestGen9, givenGen9ThenL3IsProgrammed) {
bool l3ConfigDifference;
bool isL3Programmable;

View File

@@ -18,7 +18,7 @@ using namespace NEO;
using CommandEncoderTest = Test<DeviceFixture>;
GEN9TEST_F(CommandEncoderTest, appendsASetMMIO) {
GEN9TEST_F(CommandEncoderTest, WhenProgrammingThenLoadRegisterImmIsUsed) {
CommandContainer cmdContainer;
cmdContainer.initialize(pDevice);
EncodeL3State<FamilyType>::encode(cmdContainer, false);
@@ -31,7 +31,7 @@ GEN9TEST_F(CommandEncoderTest, appendsASetMMIO) {
ASSERT_NE(itorLRI, commands.end());
}
GEN9TEST_F(CommandEncoderTest, givenNoSLMSetCorrectMMIO) {
GEN9TEST_F(CommandEncoderTest, givenNoSlmThenCorrectMmioIsSet) {
CommandContainer cmdContainer;
cmdContainer.initialize(pDevice);
EncodeL3State<FamilyType>::encode(cmdContainer, false);
@@ -48,7 +48,7 @@ GEN9TEST_F(CommandEncoderTest, givenNoSLMSetCorrectMMIO) {
EXPECT_EQ(cmd->getDataDword(), expectedData);
}
GEN9TEST_F(CommandEncoderTest, givenSLMSetCorrectMMIO) {
GEN9TEST_F(CommandEncoderTest, givenSlmThenCorrectMmioIsSet) {
CommandContainer cmdContainer;
cmdContainer.initialize(pDevice);
EncodeL3State<FamilyType>::encode(cmdContainer, true);