Rename TimestampPacket to TimestampPacketStorage.

Related-To: NEO-2872

Change-Id: Id1f78491912c44890ae7ead2cac12ec8eb073628
Signed-off-by: Piotr Fusik <piotr.fusik@intel.com>
This commit is contained in:
Piotr Fusik
2019-04-16 14:07:50 +02:00
committed by sys_ocldev
parent 62e2ca05e1
commit 745c20c78a
16 changed files with 75 additions and 83 deletions

View File

@@ -311,11 +311,11 @@ HWTEST_F(CommandStreamReceiverTest, givenTimestampPacketAllocatorWhenAskingForTa
auto &csr = pDevice->getUltCommandStreamReceiver<FamilyType>();
EXPECT_EQ(nullptr, csr.timestampPacketAllocator.get());
TagAllocator<TimestampPacket> *allocator = csr.getTimestampPacketAllocator();
TagAllocator<TimestampPacketStorage> *allocator = csr.getTimestampPacketAllocator();
EXPECT_NE(nullptr, csr.timestampPacketAllocator.get());
EXPECT_EQ(allocator, csr.timestampPacketAllocator.get());
TagAllocator<TimestampPacket> *allocator2 = csr.getTimestampPacketAllocator();
TagAllocator<TimestampPacketStorage> *allocator2 = csr.getTimestampPacketAllocator();
EXPECT_EQ(allocator, allocator2);
auto node1 = allocator->getTag();