From 446a4372bc058ab6c87599323c535cd5060d2041 Mon Sep 17 00:00:00 2001 From: ROCm CI Service Account <66695075+rocm-ci@users.noreply.github.com> Date: Thu, 22 Sep 2022 21:13:04 +0530 Subject: [PATCH] SWDEV-351031 - Enable test - Unit_hipHostRegister_Flags (#2890) Change-Id: I7048699272a40962b12619ffdf22cc17053400f2 --- tests/catch/unit/memory/hipHostRegister.cc | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/catch/unit/memory/hipHostRegister.cc b/tests/catch/unit/memory/hipHostRegister.cc index 48fcd0e96a..8d30ae30f7 100644 --- a/tests/catch/unit/memory/hipHostRegister.cc +++ b/tests/catch/unit/memory/hipHostRegister.cc @@ -162,11 +162,6 @@ template __global__ void fill_kernel(T* dataPtr, T value) { } TEMPLATE_TEST_CASE("Unit_hipHostRegister_Flags", "", int, float, double) { -#if HT_AMD - HipTest::HIP_SKIP_TEST("EXSWCPHIPT-138"); - return; -#else - size_t sizeBytes = 1 * sizeof(TestType); TestType* hostPtr = reinterpret_cast(malloc(sizeBytes)); @@ -193,7 +188,6 @@ TEMPLATE_TEST_CASE("Unit_hipHostRegister_Flags", "", int, float, double) { } free(hostPtr); -#endif } TEMPLATE_TEST_CASE("Unit_hipHostRegister_Negative", "", int, float, double) {