Re-enable disabled AUB tests

Change-Id: I4ad368b7174401496993a6372aeb1034d0ead89e
Signed-off-by: Pawel Wilma <pawel.wilma@intel.com>
This commit is contained in:
Pawel Wilma 2020-03-25 12:57:36 +01:00 committed by sys_ocldev
parent 5954dbdda4
commit 45d7e6f691
3 changed files with 3 additions and 3 deletions

View File

@ -38,7 +38,7 @@ cl_mem_flags testFlagsTable[] = {
0,
CL_MEM_COPY_HOST_PTR};
HWTEST_P(VerifyMemoryBufferHw, DISABLED_givenDifferentBuffersWhenValidatingMemoryThenSuccessIsReturned) {
HWTEST_P(VerifyMemoryBufferHw, givenDifferentBuffersWhenValidatingMemoryThenSuccessIsReturned) {
cl_uint testItem = 5;
cl_uint testItemWrong1 = 4;
cl_uint testItemWrong2 = 6;

View File

@ -119,7 +119,7 @@ HWTEST_F(AUBcommandstreamTests, expectMemorySingle) {
AUBCommandStreamFixture::expectMemory<FamilyType>(&buffer, &buffer, size);
}
HWTEST_F(AUBcommandstreamTests, DISABLED_expectMemoryLarge) {
HWTEST_F(AUBcommandstreamTests, expectMemoryLarge) {
size_t sizeBuffer = 0x100001;
auto buffer = new uint8_t[sizeBuffer];

View File

@ -39,7 +39,7 @@ class UnifiedMemoryCopyAubTest : public UnifiedMemoryAubFixture,
}
};
HWTEST_P(UnifiedMemoryCopyAubTest, DISABLED_givenTwoUnifiedMemoryAllocsWhenCopyingOneToAnotherThenValuesMatch) {
HWTEST_P(UnifiedMemoryCopyAubTest, givenTwoUnifiedMemoryAllocsWhenCopyingOneToAnotherThenValuesMatch) {
clEnqueueMemcpyINTEL(this->pCmdQ, true, dstPtr, srcPtr, dataSize, 0, nullptr, nullptr);
expectMemory<FamilyType>(dstPtr, srcValues.data(), dataSize);
}