From 1363f92ea02eae2d2c363d36b4f302982a71f3dc Mon Sep 17 00:00:00 2001 From: ROCm CI Service Account <66695075+rocm-ci@users.noreply.github.com> Date: Mon, 14 Aug 2023 21:30:34 +0530 Subject: [PATCH] SWDEV-397570 - Adding PASSED string on cases where tests are skipped. (#385) Change-Id: I2bbe5cfb9eff75b817f3e77aaeeecc5d0c411dbf [ROCm/hip-tests commit: 49d3ea994551798fe4940d4cedce76f829aca216] --- .../samples/2_Cookbook/11_texture_driver/texture2dDrv.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/projects/hip-tests/samples/2_Cookbook/11_texture_driver/texture2dDrv.cpp b/projects/hip-tests/samples/2_Cookbook/11_texture_driver/texture2dDrv.cpp index e30c1ba911..120006b140 100644 --- a/projects/hip-tests/samples/2_Cookbook/11_texture_driver/texture2dDrv.cpp +++ b/projects/hip-tests/samples/2_Cookbook/11_texture_driver/texture2dDrv.cpp @@ -231,6 +231,7 @@ inline bool isImageSupported() { int main(int argc, char** argv) { if (!isImageSupported()) { printf("Texture is not support on the device. Skipped.\n"); + printf("texture2dDrv %s ...\n", "PASSED"); return 0; } checkHipErrors(hipInit(0));