mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-17 05:10:13 +08:00
Correct method names in device and module fixtures
correct naming in derived classes Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
fea9c9aca7
commit
6a46e8f0ca
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2018-2021 Intel Corporation
|
||||
* Copyright (C) 2018-2022 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
@@ -23,7 +23,7 @@ void api_fixture::SetUp() {
|
||||
setReferenceTime();
|
||||
|
||||
PlatformFixture::SetUp(numPlatformDevices, platformDevices);
|
||||
DeviceFixture::SetUp();
|
||||
DeviceFixture::setUp();
|
||||
ASSERT_NE(nullptr, pDevice);
|
||||
|
||||
auto pDevice = pPlatform->getDevice(0);
|
||||
@@ -40,7 +40,7 @@ void api_fixture::TearDown() {
|
||||
delete pContext;
|
||||
delete pProgram;
|
||||
CommandQueueHwFixture::TearDown();
|
||||
DeviceFixture::TearDown();
|
||||
DeviceFixture::tearDown();
|
||||
PlatformFixture::TearDown();
|
||||
}
|
||||
} // namespace NEO
|
||||
|
||||
Reference in New Issue
Block a user