diff --git a/projects/hip-tests/catch/hipTestMain/config/config_amd_linux b/projects/hip-tests/catch/hipTestMain/config/config_amd_linux index d483567bc0..9e191865ea 100644 --- a/projects/hip-tests/catch/hipTestMain/config/config_amd_linux +++ b/projects/hip-tests/catch/hipTestMain/config/config_amd_linux @@ -101,8 +101,6 @@ "Unit_hipEventDestroy_WithWaitingStream", "=== Below tests fail in stress test on 23/06/23 ===", "Unit_hipIpcMemAccess_ParameterValidation", - "Unit_hipGraphClone_Test_hipGraphExecMemcpyNodeSetParams", - "Unit_hipGraphClone_Test_hipGraphMemcpyNodeSetParams1D_and_exec", "=== Below tests fail in stress test on 30/06/23 ===", "Unit_hipMemcpyParam2DAsync_multiDevice-StreamOnDiffDevice", "=== Below tests fail in external CI for PR https://github.com/ROCm-Developer-Tools/hip-tests/pull/96 ===", @@ -1386,7 +1384,6 @@ "Unit_hipGraphAddNodeTypeMemset_Positive_Basic - uint8_t", "Unit_hipGraphAddNodeTypeMemset_Positive_Basic - uint16_t", "Unit_hipGraphAddNodeTypeMemset_Positive_Basic - uint32_t", - "Unit_hipGraphAddNodeTypeMemcpy_Positive_Basic", "Unit_hipMemAdvise_TstAlignedAllocMem_XNACK", "Unit_hipArrayGetDescriptor_Positive_Basic", "Unit_hipArrayGetDescriptor_Negative_Parameters", diff --git a/projects/hip-tests/catch/unit/graph/hipGraphAddNode.cc b/projects/hip-tests/catch/unit/graph/hipGraphAddNode.cc index 136720dbab..744350f0a0 100644 --- a/projects/hip-tests/catch/unit/graph/hipGraphAddNode.cc +++ b/projects/hip-tests/catch/unit/graph/hipGraphAddNode.cc @@ -326,6 +326,8 @@ static hipError_t MemcpyType3DWrapper(PtrVariant dst_ptr, hipPos dst_pos, PtrVar * - HIP_VERSION >= 6.0 */ TEST_CASE("Unit_hipGraphAddNodeTypeMemcpy_Positive_Basic") { + CHECK_IMAGE_SUPPORT + constexpr bool async = false; SECTION("Device to host") { Memcpy3DDeviceToHostShell(MemcpyType3DWrapper); } diff --git a/projects/hip-tests/catch/unit/graph/hipGraphCloneComplx.cc b/projects/hip-tests/catch/unit/graph/hipGraphCloneComplx.cc index 5c0af1c79e..6f0dd323ef 100644 --- a/projects/hip-tests/catch/unit/graph/hipGraphCloneComplx.cc +++ b/projects/hip-tests/catch/unit/graph/hipGraphCloneComplx.cc @@ -610,6 +610,8 @@ static void hipGraphClone_Test_hipGraphExecMemcpyNodeSetParams() { } TEST_CASE("Unit_hipGraphClone_Test_hipGraphExecMemcpyNodeSetParams") { + CHECK_IMAGE_SUPPORT + hipGraphClone_Test_hipGraphExecMemcpyNodeSetParams(); }