Remove usage of TestLegacy from shared tests

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2022-08-16 12:19:30 +00:00
committed by Compute-Runtime-Automation
parent cb23a38aad
commit bfc0919999
36 changed files with 94 additions and 94 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2018-2021 Intel Corporation
* Copyright (C) 2018-2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@ -66,7 +66,7 @@ struct MediaKernelFixture : public HelloWorldFixture<FactoryType>,
Parent::kernelName = "non_vme_kernel";
Parent::SetUp();
ClHardwareParse::SetUp();
ClHardwareParse::setUp();
ASSERT_NE(nullptr, pKernel);
ASSERT_EQ(false, pKernel->isVmeKernel());
@ -90,7 +90,7 @@ struct MediaKernelFixture : public HelloWorldFixture<FactoryType>,
}
pMultiDeviceVmeKernel->release();
ClHardwareParse::TearDown();
ClHardwareParse::tearDown();
Parent::TearDown();
}

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2018-2021 Intel Corporation
* Copyright (C) 2018-2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@ -54,11 +54,11 @@ struct TwoWalkerTest
void SetUp() override {
Parent::SetUp();
ClHardwareParse::SetUp();
ClHardwareParse::setUp();
}
void TearDown() override {
ClHardwareParse::TearDown();
ClHardwareParse::tearDown();
Parent::TearDown();
}

View File

@ -29,7 +29,7 @@ struct UltCommandStreamReceiverTest
::testing::Test {
void SetUp() override {
ClDeviceFixture::SetUp();
ClHardwareParse::SetUp();
ClHardwareParse::setUp();
cmdBuffer = alignedMalloc(sizeStream, alignmentStream);
dshBuffer = alignedMalloc(sizeStream, alignmentStream);
@ -82,7 +82,7 @@ struct UltCommandStreamReceiverTest
alignedFree(iohBuffer);
alignedFree(dshBuffer);
alignedFree(cmdBuffer);
ClHardwareParse::TearDown();
ClHardwareParse::tearDown();
ClDeviceFixture::TearDown();
}