mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-11 16:45:25 +08:00
Correct shared fixture methods name to meet clang-tidy requirements
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
6ab8480ade
commit
5ffeac44c5
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2018-2021 Intel Corporation
|
||||
* Copyright (C) 2018-2022 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
@@ -30,7 +30,7 @@ extern const char *frontEndDllName;
|
||||
extern const char *igcDllName;
|
||||
} // namespace Os
|
||||
|
||||
void MemoryManagementFixture::SetUp() {
|
||||
void MemoryManagementFixture::setUp() {
|
||||
EXPECT_EQ(static_cast<size_t>(-1), MemoryManagement::failingAllocation);
|
||||
MemoryManagement::indexAllocation = 0;
|
||||
MemoryManagement::indexDeallocation = 0;
|
||||
@@ -39,7 +39,7 @@ void MemoryManagementFixture::SetUp() {
|
||||
MemoryManagement::logTraces = MemoryManagement::captureCallStacks;
|
||||
}
|
||||
|
||||
void MemoryManagementFixture::TearDown() {
|
||||
void MemoryManagementFixture::tearDown() {
|
||||
clearFailingAllocation();
|
||||
checkForLeaks();
|
||||
MemoryManagement::logTraces = false;
|
||||
|
||||
Reference in New Issue
Block a user