Skip to content

Commit d7f38ca

Browse files
Remove unneeded asserts
Signed-off-by: Maciej Dziuban <maciej.dziuban@intel.com>
1 parent 33e8f73 commit d7f38ca

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

opencl/test/unit_test/os_interface/linux/drm_memory_manager_allocate_in_device_pool_tests_dg1.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1089,7 +1089,6 @@ TEST_F(DrmMemoryManagerLocalMemoryTest, givenCustomAlignmentWhenAllocatingAlloca
10891089
ASSERT_NE(nullptr, allocation);
10901090
EXPECT_EQ(MemoryManager::AllocationStatus::Success, allocationStatus);
10911091
EXPECT_TRUE(isAllocationWithinHeap(*allocation, HeapIndex::HEAP_STANDARD64KB));
1092-
EXPECT_FALSE(isAligned(allocation->getGpuAddress(), 32 * MemoryConstants::megaByte));
10931092
memoryManager->freeGraphicsMemory(allocation);
10941093
}
10951094

@@ -1101,7 +1100,6 @@ TEST_F(DrmMemoryManagerLocalMemoryTest, givenCustomAlignmentWhenAllocatingAlloca
11011100
ASSERT_NE(nullptr, allocation);
11021101
EXPECT_EQ(MemoryManager::AllocationStatus::Success, allocationStatus);
11031102
EXPECT_TRUE(isAllocationWithinHeap(*allocation, HeapIndex::HEAP_STANDARD2MB));
1104-
EXPECT_FALSE(isAligned(allocation->getGpuAddress(), 32 * MemoryConstants::megaByte));
11051103
memoryManager->freeGraphicsMemory(allocation);
11061104
}
11071105
}

0 commit comments

Comments
 (0)