From d9bb3797fa4bd37231df30f57b169027856d5f1b 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 [ROCm/hip-tests commit: f5bc878b5f9e0d3454ecbf1da89fde325800ed6f] --- projects/hip-tests/catch/unit/memory/hipHostRegister.cc | 6 ------ 1 file changed, 6 deletions(-) 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) {