ULT renaming: Command Stream tests
Related-To: NEO-2236 Signed-off-by: Adam Cetnerowski <adam.cetnerowski@intel.com>
This commit is contained in:
parent
e41731211a
commit
207d383743
|
@ -591,14 +591,14 @@ HWTEST_F(CommandStreamReceiverTest, whenCsrIsCreatedThenUseTimestampPacketWriteI
|
|||
EXPECT_EQ(UnitTestHelper<FamilyType>::isTimestampPacketWriteSupported(), csr.peekTimestampPacketWriteEnabled());
|
||||
}
|
||||
|
||||
TEST_F(CommandStreamReceiverTest, whenGetEventTsAllocatorIsCalledItReturnsSameTagAllocator) {
|
||||
TEST_F(CommandStreamReceiverTest, whenGettingEventTsAllocatorThenSameTagAllocatorIsReturned) {
|
||||
TagAllocator<HwTimeStamps> *allocator = commandStreamReceiver->getEventTsAllocator();
|
||||
EXPECT_NE(nullptr, allocator);
|
||||
TagAllocator<HwTimeStamps> *allocator2 = commandStreamReceiver->getEventTsAllocator();
|
||||
EXPECT_EQ(allocator2, allocator);
|
||||
}
|
||||
|
||||
TEST_F(CommandStreamReceiverTest, whenGetEventPerfCountAllocatorIsCalledItReturnsSameTagAllocator) {
|
||||
TEST_F(CommandStreamReceiverTest, whenGettingEventPerfCountAllocatorThenSameTagAllocatorIsReturned) {
|
||||
const uint32_t gpuReportSize = 100;
|
||||
TagAllocator<HwPerfCounter> *allocator = commandStreamReceiver->getEventPerfCountAllocator(gpuReportSize);
|
||||
EXPECT_NE(nullptr, allocator);
|
||||
|
|
|
@ -383,7 +383,7 @@ HWTEST_F(ExperimentalCommandBufferTest, givenEnabledExperimentalCmdBufferWhenCom
|
|||
|
||||
using ExperimentalCommandBufferRootDeviceIndexTest = MultiRootDeviceFixture;
|
||||
|
||||
TEST_F(ExperimentalCommandBufferRootDeviceIndexTest, experimentalCommandBufferGraphicsAllocationsHaveCorrectRootDeviceIndex) {
|
||||
TEST_F(ExperimentalCommandBufferRootDeviceIndexTest, GivenExperimentalCommandBufferGraphicsAllocationsThenItHasCorrectRootDeviceIndex) {
|
||||
auto experimentalCommandBuffer = std::make_unique<MockExperimentalCommandBuffer>(&device->getGpgpuCommandStreamReceiver());
|
||||
|
||||
ASSERT_NE(nullptr, experimentalCommandBuffer);
|
||||
|
|
Loading…
Reference in New Issue