SWDEV-515530 - Re-enable passing tests (#1013)

This commit is contained in:
marandje
2025-11-14 16:36:44 +01:00
committed by GitHub
parent cb257ab9f7
commit 5616a255e2
2 changed files with 6 additions and 38 deletions
@@ -93,8 +93,13 @@ TEST_CASE("Unit_hipLaunchCooperativeKernelMultiDevice_Negative_Parameters",
}
SECTION("numDevices > device count") {
#if HT_AMD
HIP_CHECK_ERROR(hipLaunchCooperativeKernelMultiDevice(params_list.data(), device_count + 1, 0u),
hipErrorInvalidDevice);
#else
HIP_CHECK_ERROR(hipLaunchCooperativeKernelMultiDevice(params_list.data(), device_count + 1, 0u),
hipErrorInvalidValue);
#endif
}
SECTION("invalid flags") {
@@ -158,4 +163,4 @@ TEST_CASE("Unit_hipLaunchCooperativeKernelMultiDevice_Negative_MultiKernelSameDe
for (const auto params : params_list) {
HIP_CHECK(hipStreamDestroy(params.stream));
}
}
}