From 92bccc1ec3c041e4ada84cb41c58241d62c8fcb8 Mon Sep 17 00:00:00 2001 From: ROCm CI Service Account <66695075+rocm-ci@users.noreply.github.com> Date: Fri, 23 Sep 2022 12:37:25 +0530 Subject: [PATCH] SWDEV-344309 - Enable some filter tests in Windows (#2944) Enable tests that should work now Change-Id: I903d7e73d7b5df94da72cb41f2bde9ab2eec653d [ROCm/hip commit: 8c8499be7771b7af9d75acedbe6ac858009a6721] --- .../hip/tests/catch/unit/texture/hipTextureObj1DCheckModes.cc | 4 ---- .../hip/tests/catch/unit/texture/hipTextureObj2DCheckModes.cc | 4 ---- .../hip/tests/catch/unit/texture/hipTextureObj3DCheckModes.cc | 4 ---- 3 files changed, 12 deletions(-) diff --git a/projects/hip/tests/catch/unit/texture/hipTextureObj1DCheckModes.cc b/projects/hip/tests/catch/unit/texture/hipTextureObj1DCheckModes.cc index 052967e2f0..55f4910370 100644 --- a/projects/hip/tests/catch/unit/texture/hipTextureObj1DCheckModes.cc +++ b/projects/hip/tests/catch/unit/texture/hipTextureObj1DCheckModes.cc @@ -102,10 +102,6 @@ static void runTest(const int width, const float offsetX) { TEST_CASE("Unit_hipTextureObj1DCheckModes") { CHECK_IMAGE_SUPPORT -#ifdef _WIN32 - INFO("Unit_hipTextureObj1DCheckModes skipped on Windows"); - return; -#endif SECTION("hipAddressModeClamp, hipFilterModePoint, regularCoords") { runTest(256, -3); runTest(256, 4); diff --git a/projects/hip/tests/catch/unit/texture/hipTextureObj2DCheckModes.cc b/projects/hip/tests/catch/unit/texture/hipTextureObj2DCheckModes.cc index 19562f8966..e9d1665c20 100644 --- a/projects/hip/tests/catch/unit/texture/hipTextureObj2DCheckModes.cc +++ b/projects/hip/tests/catch/unit/texture/hipTextureObj2DCheckModes.cc @@ -114,10 +114,6 @@ line1: TEST_CASE("Unit_hipTextureObj2DCheckModes") { CHECK_IMAGE_SUPPORT -#ifdef _WIN32 - INFO("Unit_hipTextureObj2DCheckModes skipped on Windows"); - return; -#endif SECTION("hipAddressModeClamp, hipFilterModePoint, regularCoords") { runTest(256, 256, -3.9, 6.1); runTest(256, 256, 4.4, -7.0); diff --git a/projects/hip/tests/catch/unit/texture/hipTextureObj3DCheckModes.cc b/projects/hip/tests/catch/unit/texture/hipTextureObj3DCheckModes.cc index d219763a91..b7f0a6215e 100644 --- a/projects/hip/tests/catch/unit/texture/hipTextureObj3DCheckModes.cc +++ b/projects/hip/tests/catch/unit/texture/hipTextureObj3DCheckModes.cc @@ -148,10 +148,6 @@ line1: TEST_CASE("Unit_hipTextureObj3DCheckModes") { CHECK_IMAGE_SUPPORT -#ifdef _WIN32 - INFO("Unit_hipTextureObj3DCheckModes skipped on Windows"); - return; -#endif int device = 0; hipDeviceProp_t props;