diff --git a/projects/hip-tests/catch/unit/memory/hipMemcpyAtoA.cc b/projects/hip-tests/catch/unit/memory/hipMemcpyAtoA.cc index 1ef88e4e57..5bb28de94e 100644 --- a/projects/hip-tests/catch/unit/memory/hipMemcpyAtoA.cc +++ b/projects/hip-tests/catch/unit/memory/hipMemcpyAtoA.cc @@ -50,6 +50,7 @@ TEST_CASE("Unit_hipMemcpyAtoA_Basic") { return; #else HIP_CHECK(hipSetDevice(0)); + CHECK_IMAGE_SUPPORT int row, col; row = 1; col = GENERATE(3, 4, 100); diff --git a/projects/hip-tests/catch/unit/memory/hipMemcpyAtoD.cc b/projects/hip-tests/catch/unit/memory/hipMemcpyAtoD.cc index abda626086..1f41d35942 100644 --- a/projects/hip-tests/catch/unit/memory/hipMemcpyAtoD.cc +++ b/projects/hip-tests/catch/unit/memory/hipMemcpyAtoD.cc @@ -48,6 +48,7 @@ TEST_CASE("Unit_hipMemcpyAtoD_Basic") { return; #else HIP_CHECK(hipSetDevice(0)); + CHECK_IMAGE_SUPPORT int row, col; row = 1; col = GENERATE(3, 4, 100); diff --git a/projects/hip-tests/catch/unit/memory/hipMemcpyAtoHAsync.cc b/projects/hip-tests/catch/unit/memory/hipMemcpyAtoHAsync.cc index 2eb5f15072..cef4c4dbdf 100644 --- a/projects/hip-tests/catch/unit/memory/hipMemcpyAtoHAsync.cc +++ b/projects/hip-tests/catch/unit/memory/hipMemcpyAtoHAsync.cc @@ -48,6 +48,7 @@ TEST_CASE("Unit_hipMemcpyAtoHAsync_Basic") { return; #else HIP_CHECK(hipSetDevice(0)); + CHECK_IMAGE_SUPPORT int row, col; row = 1; col = GENERATE(3, 4, 100);