fix: disable compression for exported allocations

Related-To: NEO-12021

Signed-off-by: Szymon Morek <szymon.morek@intel.com>
This commit is contained in:
Szymon Morek
2024-07-15 16:27:23 +00:00
committed by Compute-Runtime-Automation
parent 80afda1ac9
commit 432ecbc8f4
7 changed files with 25 additions and 1 deletions

View File

@@ -7929,3 +7929,8 @@ TEST_F(DrmMemoryManagerTest, givenDebugVariableToToggleGpuVaBitsWhenAllocatingRe
memoryManager->freeGraphicsMemory(allocation);
}
}
TEST_F(DrmMemoryManagerTest, givenIsCompressionSupportedForShareableThenReturnCorrectValue) {
EXPECT_FALSE(memoryManager->isCompressionSupportedForShareable(true));
EXPECT_TRUE(memoryManager->isCompressionSupportedForShareable(false));
}