Fix whenAppendMemoryCopyIsCalledThenMemoryIsProperlyCopied aub test

Related-To: NEO-6661
Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com>
This commit is contained in:
Kamil Kopryk 2022-02-09 18:26:34 +00:00 committed by Compute-Runtime-Automation
parent 18cafd3a52
commit c672930f16
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2021 Intel Corporation
* Copyright (C) 2021-2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@ -35,7 +35,7 @@ TEST_F(AUBHelloWorldL0, whenAppendMemoryCopyIsCalledThenMemoryIsProperlyCopied)
pCmdq->executeCommandLists(1, pHCmdList.get(), nullptr, false);
pCmdq->synchronize(std::numeric_limits<uint32_t>::max());
EXPECT_TRUE(csr->expectMemory(dstMemory, srcMemory, val, AubMemDump::CmdServicesMemTraceMemoryCompare::CompareOperationValues::CompareEqual));
EXPECT_TRUE(csr->expectMemory(dstMemory, srcMemory, size, AubMemDump::CmdServicesMemTraceMemoryCompare::CompareOperationValues::CompareEqual));
driverHandle->svmAllocsManager->freeSVMAlloc(srcMemory);
driverHandle->svmAllocsManager->freeSVMAlloc(dstMemory);