SWDEV-411064 - check if image is supported before running image specific tests

Change-Id: I62b3f7489f2f33b4b4e02f42a46e66c8940f2277
This commit is contained in:
Jatin Chaudhary
2023-07-25 17:04:13 +01:00
committed by Jatin Jaikishan Chaudhary
parent b6b43db172
commit ee3c94faf2
52 changed files with 524 additions and 76 deletions
+4
View File
@@ -32,6 +32,8 @@ THE SOFTWARE.
* Basic Functional test of hipMemset3D
*/
TEST_CASE("Unit_hipMemset3D_BasicFunctional") {
CHECK_IMAGE_SUPPORT
constexpr int memsetval = 0x22;
constexpr size_t numH = 256;
constexpr size_t numW = 256;
@@ -80,6 +82,8 @@ TEST_CASE("Unit_hipMemset3D_BasicFunctional") {
* Basic Functional test of hipMemset3DAsync
*/
TEST_CASE("Unit_hipMemset3DAsync_BasicFunctional") {
CHECK_IMAGE_SUPPORT
constexpr int memsetval = 0x22;
constexpr size_t numH = 256;
constexpr size_t numW = 256;