mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-10 12:53:42 +08:00
Remove usage of TestLegacy from shared tests
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:

committed by
Compute-Runtime-Automation

parent
cb23a38aad
commit
bfc0919999
@ -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();
|
||||
}
|
||||
|
||||
|
@ -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();
|
||||
}
|
||||
|
||||
|
@ -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();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user