@@ -1713,7 +1713,7 @@ TEST_F(DrmMemoryManagerTest, given32BitAddressingWhenBufferFromSharedHandleIsCre
1713
1713
EXPECT_FALSE (graphicsAllocation->is32BitAllocation ());
1714
1714
EXPECT_EQ (1 , lseekCalledCount);
1715
1715
1716
- EXPECT_EQ (GmmHelper::canonize (memoryManager-> gfxPartition -> getHeapBase (HeapIndex::HEAP_STANDARD)) , drmAllocation->getGpuBaseAddress ());
1716
+ EXPECT_EQ (0llu , drmAllocation->getGpuBaseAddress ());
1717
1717
1718
1718
memoryManager->freeGraphicsMemory (graphicsAllocation);
1719
1719
}
@@ -1731,7 +1731,7 @@ TEST_F(DrmMemoryManagerTest, givenLimitedRangeAllocatorWhenBufferFromSharedHandl
1731
1731
EXPECT_FALSE (graphicsAllocation->is32BitAllocation ());
1732
1732
auto drmAllocation = static_cast <DrmAllocation *>(graphicsAllocation);
1733
1733
1734
- EXPECT_EQ (GmmHelper::canonize (memoryManager-> gfxPartition -> getHeapBase (HeapIndex::HEAP_STANDARD)) , drmAllocation->getGpuBaseAddress ());
1734
+ EXPECT_EQ (0llu , drmAllocation->getGpuBaseAddress ());
1735
1735
EXPECT_EQ (1 , lseekCalledCount);
1736
1736
memoryManager->freeGraphicsMemory (graphicsAllocation);
1737
1737
}
@@ -1749,7 +1749,7 @@ TEST_F(DrmMemoryManagerTest, givenNon32BitAddressingWhenBufferFromSharedHandleIs
1749
1749
auto drmAllocation = static_cast <DrmAllocation *>(graphicsAllocation);
1750
1750
EXPECT_FALSE (graphicsAllocation->is32BitAllocation ());
1751
1751
EXPECT_EQ (1 , lseekCalledCount);
1752
- EXPECT_EQ (GmmHelper::canonize (memoryManager-> gfxPartition -> getHeapBase (HeapIndex::HEAP_STANDARD)) , drmAllocation->getGpuBaseAddress ());
1752
+ EXPECT_EQ (0llu , drmAllocation->getGpuBaseAddress ());
1753
1753
memoryManager->freeGraphicsMemory (graphicsAllocation);
1754
1754
}
1755
1755
0 commit comments