performance: Allow indirect allocs as pack on windows

Related-To: NEO-11228

Signed-off-by: Szymon Morek <szymon.morek@intel.com>
This commit is contained in:
Szymon Morek
2024-05-06 13:29:48 +00:00
committed by Compute-Runtime-Automation
parent 83e8ae4a20
commit d708c5f300
2 changed files with 3 additions and 3 deletions

View File

@@ -1808,10 +1808,10 @@ TEST(OsAgnosticMemoryManager, givenOsAgnosticMemoryManagerAndFreeMemoryDisabledW
EXPECT_FALSE(mockManager->freeMemoryCalled);
}
TEST(OsAgnosticMemoryManager, givenOsAgnosticMemoryManagerWhenCheckedForIndirectAllocationsAsPackSupportThenFalseIsReturned) {
TEST(OsAgnosticMemoryManager, givenOsAgnosticMemoryManagerWhenCheckedForIndirectAllocationsAsPackSupportThenTrueIsReturned) {
MockExecutionEnvironment executionEnvironment;
OsAgnosticMemoryManager memoryManager(executionEnvironment);
EXPECT_FALSE(memoryManager.allowIndirectAllocationsAsPack(0u));
EXPECT_TRUE(memoryManager.allowIndirectAllocationsAsPack(0u));
}
TEST(OsAgnosticMemoryManager, givenOsAgnosticMemoryManagerWhenVerifyHandleThenReturnTrue) {