ULT renaming: Miscellaneous tests

- Source Level Debugger
- Debug File Reader
- Windows Interface

Related-To: NEO-2236

Signed-off-by: Adam Cetnerowski <adam.cetnerowski@intel.com>
This commit is contained in:
Adam Cetnerowski
2021-01-04 10:47:00 +01:00
committed by Compute-Runtime-Automation
parent 0eb10d7505
commit 404c7e71ef
3 changed files with 6 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2018-2020 Intel Corporation
* Copyright (C) 2018-2021 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -622,7 +622,7 @@ TEST(SourceLevelDebugger, givenTwoRootDevicesWhenSecondIsCreatedThenCreatingNewS
}
}
TEST(SourceLevelDebugger, givenMultipleRootDevicesWhenTheyAreCreatedTheyUseDedicatedSourceLevelDebugger) {
TEST(SourceLevelDebugger, givenMultipleRootDevicesWhenCreatedThenUseDedicatedSourceLevelDebugger) {
DebuggerLibraryRestorer restorer;
if (defaultHwInfo->capabilityTable.debuggerSupported) {

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2018-2020 Intel Corporation
* Copyright (C) 2018-2021 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -119,7 +119,7 @@ TEST(SettingsFileReader, GivenSettingNotInFileWhenGettingSettingThenProvidedDefa
EXPECT_EQ(defaultStringValue, returnedStringValue);
}
TEST(SettingsFileReader, WhenGettingAppSpecificLocationTheCorrectLocationIsReturned) {
TEST(SettingsFileReader, WhenGettingAppSpecificLocationThenCorrectLocationIsReturned) {
std::unique_ptr<TestSettingsFileReader> reader(new TestSettingsFileReader(TestSettingsFileReader::testPath));
std::string appSpecific = "cl_cache_dir";
EXPECT_EQ(appSpecific, reader->appSpecificLocation(appSpecific));

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2018-2020 Intel Corporation
* Copyright (C) 2018-2021 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -14,7 +14,7 @@
using namespace NEO;
TEST(osInterfaceTests, osInterfaceLocalMemoryEnabledByDefault) {
TEST(osInterfaceTests, GivenDefaultOsInterfaceThenLocalMemoryEnabled) {
EXPECT_TRUE(OSInterface::osEnableLocalMemory);
}