From 207d3837432ea96c054d2093359d133fb9fcc7cf Mon Sep 17 00:00:00 2001 From: Adam Cetnerowski Date: Mon, 23 Nov 2020 13:01:58 +0100 Subject: [PATCH] ULT renaming: Command Stream tests Related-To: NEO-2236 Signed-off-by: Adam Cetnerowski --- .../command_stream/command_stream_receiver_tests.cpp | 4 ++-- .../command_stream/experimental_command_buffer_tests.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/opencl/test/unit_test/command_stream/command_stream_receiver_tests.cpp b/opencl/test/unit_test/command_stream/command_stream_receiver_tests.cpp index db1b782da0..6825218b2a 100644 --- a/opencl/test/unit_test/command_stream/command_stream_receiver_tests.cpp +++ b/opencl/test/unit_test/command_stream/command_stream_receiver_tests.cpp @@ -591,14 +591,14 @@ HWTEST_F(CommandStreamReceiverTest, whenCsrIsCreatedThenUseTimestampPacketWriteI EXPECT_EQ(UnitTestHelper::isTimestampPacketWriteSupported(), csr.peekTimestampPacketWriteEnabled()); } -TEST_F(CommandStreamReceiverTest, whenGetEventTsAllocatorIsCalledItReturnsSameTagAllocator) { +TEST_F(CommandStreamReceiverTest, whenGettingEventTsAllocatorThenSameTagAllocatorIsReturned) { TagAllocator *allocator = commandStreamReceiver->getEventTsAllocator(); EXPECT_NE(nullptr, allocator); TagAllocator *allocator2 = commandStreamReceiver->getEventTsAllocator(); EXPECT_EQ(allocator2, allocator); } -TEST_F(CommandStreamReceiverTest, whenGetEventPerfCountAllocatorIsCalledItReturnsSameTagAllocator) { +TEST_F(CommandStreamReceiverTest, whenGettingEventPerfCountAllocatorThenSameTagAllocatorIsReturned) { const uint32_t gpuReportSize = 100; TagAllocator *allocator = commandStreamReceiver->getEventPerfCountAllocator(gpuReportSize); EXPECT_NE(nullptr, allocator); diff --git a/opencl/test/unit_test/command_stream/experimental_command_buffer_tests.cpp b/opencl/test/unit_test/command_stream/experimental_command_buffer_tests.cpp index 4e7a81d921..fd8c487a9a 100644 --- a/opencl/test/unit_test/command_stream/experimental_command_buffer_tests.cpp +++ b/opencl/test/unit_test/command_stream/experimental_command_buffer_tests.cpp @@ -383,7 +383,7 @@ HWTEST_F(ExperimentalCommandBufferTest, givenEnabledExperimentalCmdBufferWhenCom using ExperimentalCommandBufferRootDeviceIndexTest = MultiRootDeviceFixture; -TEST_F(ExperimentalCommandBufferRootDeviceIndexTest, experimentalCommandBufferGraphicsAllocationsHaveCorrectRootDeviceIndex) { +TEST_F(ExperimentalCommandBufferRootDeviceIndexTest, GivenExperimentalCommandBufferGraphicsAllocationsThenItHasCorrectRootDeviceIndex) { auto experimentalCommandBuffer = std::make_unique(&device->getGpgpuCommandStreamReceiver()); ASSERT_NE(nullptr, experimentalCommandBuffer);