[SWDEV-468537] - Add check for image support for memcpy tests

Change-Id: Idc1fcf9256f1d6bc44d687271016c106d41f6ca1
Este commit está contenido en:
Rahul Manocha
2024-06-18 11:45:49 -07:00
cometido por Rakesh Roy
padre 810489ee3b
commit 196953a148
Se han modificado 5 ficheros con 3 adiciones y 4 borrados
@@ -396,6 +396,7 @@ TEST_CASE("Unit_hipMemcpy2DFromArrayAsync_Negative") {
* - HIP_VERSION >= 6.0
*/
TEST_CASE("Unit_hipMemcpy2DFromArrayAsync_capturehipMemcpy2DFromArrayAsync") {
CHECK_IMAGE_SUPPORT
int rows, cols;
rows = GENERATE(3, 4, 100);
cols = GENERATE(3, 4, 100);
+1
Ver fichero
@@ -86,6 +86,7 @@ TEST_CASE("Unit_hipMemcpyParam2D_Positive_Parameters") {
}
TEST_CASE("Unit_hipMemcpyParam2D_Positive_Array") {
CHECK_IMAGE_SUPPORT
constexpr bool async = false;
SECTION("Array from/to Host") {
MemcpyParam2DArrayHostShell<async>(MemcpyParam2DAdapter<async>());
+1
Ver fichero
@@ -107,6 +107,7 @@ TEST_CASE("Unit_hipMemcpyParam2DAsync_Positive_Parameters") {
}
TEST_CASE("Unit_hipMemcpyParam2DAsync_Positive_Array") {
CHECK_IMAGE_SUPPORT
constexpr bool async = true;
SECTION("Array from/to Host") {
MemcpyParam2DArrayHostShell<async>(MemcpyParam2DAdapter<async>());