hipMallocArray tests for default array and surface load store (#2675)

This commit is contained in:
Finlay
2022-05-25 11:43:18 +01:00
committed by GitHub
parent a4e1ca3bdc
commit 205107aa3c
2 changed files with 285 additions and 47 deletions
+9
View File
@@ -163,7 +163,16 @@ inline bool isImageSupported() {
return imageSupport != 0;
}
/**
* Causes the test to stop and be skipped at runtime.
* reason: Message describing the reason the test has been skipped.
*/
static inline void HIP_SKIP_TEST(char const* const reason) noexcept {
// ctest is setup to parse for "HIP_SKIP_THIS_TEST", at which point it will skip the test.
std::cout << "Skipping test. Reason: " << reason << '\n' << "HIP_SKIP_THIS_TEST" << std::endl;
}
}
// This must be called in the beginning of image test app's main() to indicate whether image
// is supported.