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

This commit is contained in:
Finlay
2022-05-25 11:43:18 +01:00
zatwierdzone przez GitHub
rodzic 0b6ce41b11
commit d2e351a7dc
2 zmienionych plików z 285 dodań i 47 usunięć
@@ -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.