From 404c7e71ef6cea550b73908991ef8cf6d6a3d4cc Mon Sep 17 00:00:00 2001 From: Adam Cetnerowski Date: Mon, 4 Jan 2021 10:47:00 +0100 Subject: [PATCH] ULT renaming: Miscellaneous tests - Source Level Debugger - Debug File Reader - Windows Interface Related-To: NEO-2236 Signed-off-by: Adam Cetnerowski --- .../source_level_debugger/source_level_debugger_tests.cpp | 4 ++-- opencl/test/unit_test/utilities/debug_file_reader_tests.inl | 4 ++-- opencl/test/unit_test/windows/os_interface_tests.cpp | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/opencl/test/unit_test/source_level_debugger/source_level_debugger_tests.cpp b/opencl/test/unit_test/source_level_debugger/source_level_debugger_tests.cpp index 3bdcaa4b74..3be1b7e2fc 100644 --- a/opencl/test/unit_test/source_level_debugger/source_level_debugger_tests.cpp +++ b/opencl/test/unit_test/source_level_debugger/source_level_debugger_tests.cpp @@ -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) { diff --git a/opencl/test/unit_test/utilities/debug_file_reader_tests.inl b/opencl/test/unit_test/utilities/debug_file_reader_tests.inl index aea19dc73e..f6aa9b1f3d 100644 --- a/opencl/test/unit_test/utilities/debug_file_reader_tests.inl +++ b/opencl/test/unit_test/utilities/debug_file_reader_tests.inl @@ -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 reader(new TestSettingsFileReader(TestSettingsFileReader::testPath)); std::string appSpecific = "cl_cache_dir"; EXPECT_EQ(appSpecific, reader->appSpecificLocation(appSpecific)); diff --git a/opencl/test/unit_test/windows/os_interface_tests.cpp b/opencl/test/unit_test/windows/os_interface_tests.cpp index b704ede013..7883128f59 100644 --- a/opencl/test/unit_test/windows/os_interface_tests.cpp +++ b/opencl/test/unit_test/windows/os_interface_tests.cpp @@ -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); }