diff --git a/projects/hip-tests/catch/unit/memory/hipHostRegister.cc b/projects/hip-tests/catch/unit/memory/hipHostRegister.cc index 48fcd0e96a..8d30ae30f7 100644 --- a/projects/hip-tests/catch/unit/memory/hipHostRegister.cc +++ b/projects/hip-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) {