@@ -1713,7 +1713,7 @@ TEST_F(DrmMemoryManagerTest, given32BitAddressingWhenBufferFromSharedHandleIsCre
17131713 EXPECT_FALSE (graphicsAllocation->is32BitAllocation ());
17141714 EXPECT_EQ (1 , lseekCalledCount);
17151715
1716- EXPECT_EQ (GmmHelper::canonize (memoryManager-> gfxPartition -> getHeapBase (HeapIndex::HEAP_STANDARD)) , drmAllocation->getGpuBaseAddress ());
1716+ EXPECT_EQ (0llu , drmAllocation->getGpuBaseAddress ());
17171717
17181718 memoryManager->freeGraphicsMemory (graphicsAllocation);
17191719}
@@ -1731,7 +1731,7 @@ TEST_F(DrmMemoryManagerTest, givenLimitedRangeAllocatorWhenBufferFromSharedHandl
17311731 EXPECT_FALSE (graphicsAllocation->is32BitAllocation ());
17321732 auto drmAllocation = static_cast <DrmAllocation *>(graphicsAllocation);
17331733
1734- EXPECT_EQ (GmmHelper::canonize (memoryManager-> gfxPartition -> getHeapBase (HeapIndex::HEAP_STANDARD)) , drmAllocation->getGpuBaseAddress ());
1734+ EXPECT_EQ (0llu , drmAllocation->getGpuBaseAddress ());
17351735 EXPECT_EQ (1 , lseekCalledCount);
17361736 memoryManager->freeGraphicsMemory (graphicsAllocation);
17371737}
@@ -1749,7 +1749,7 @@ TEST_F(DrmMemoryManagerTest, givenNon32BitAddressingWhenBufferFromSharedHandleIs
17491749 auto drmAllocation = static_cast <DrmAllocation *>(graphicsAllocation);
17501750 EXPECT_FALSE (graphicsAllocation->is32BitAllocation ());
17511751 EXPECT_EQ (1 , lseekCalledCount);
1752- EXPECT_EQ (GmmHelper::canonize (memoryManager-> gfxPartition -> getHeapBase (HeapIndex::HEAP_STANDARD)) , drmAllocation->getGpuBaseAddress ());
1752+ EXPECT_EQ (0llu , drmAllocation->getGpuBaseAddress ());
17531753 memoryManager->freeGraphicsMemory (graphicsAllocation);
17541754}
17551755
0 commit comments