From 8b5217d7a7c6243f6b0aa07e8bfe1b02490fa8ae Mon Sep 17 00:00:00 2001 From: ROCm CI Service Account <66695075+rocm-ci@users.noreply.github.com> Date: Sat, 17 Sep 2022 02:26:06 +0530 Subject: [PATCH] SWDEV-351200 - Enable test. (#2861) Change-Id: I454013872eff7c5047b70860e1917e8e7ce6d482 --- tests/catch/unit/memory/hipMalloc3DArray.cc | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/tests/catch/unit/memory/hipMalloc3DArray.cc b/tests/catch/unit/memory/hipMalloc3DArray.cc index 7982f85048..03d08760d4 100644 --- a/tests/catch/unit/memory/hipMalloc3DArray.cc +++ b/tests/catch/unit/memory/hipMalloc3DArray.cc @@ -348,11 +348,6 @@ TEST_CASE("Unit_hipMalloc3DArray_Negative_InvalidFormat") { } TEST_CASE("Unit_hipMalloc3DArray_Negative_BadChannelLayout") { -#if HT_AMD - HipTest::HIP_SKIP_TEST("EXSWCPHIPT-129"); - return; -#endif - const int bits = GENERATE(8, 16, 32); const hipChannelFormatKind formatKind = GENERATE(hipChannelFormatKindSigned, hipChannelFormatKindUnsigned, hipChannelFormatKindFloat); @@ -382,11 +377,6 @@ TEST_CASE("Unit_hipMalloc3DArray_Negative_8BitFloat") { } TEST_CASE("Unit_hipMalloc3DArray_Negative_DifferentChannelSizes") { -#if HT_AMD - HipTest::HIP_SKIP_TEST("EXSWCPHIPT-129"); - return; -#endif - const int bitsX = GENERATE(8, 16, 32); const int bitsY = GENERATE(8, 16, 32); const int bitsZ = GENERATE(8, 16, 32);