diff --git a/sycl/test/on-device/lit.cfg.py b/sycl/test/on-device/lit.cfg.py index f42d713ea57eb..ada28d7c51728 100644 --- a/sycl/test/on-device/lit.cfg.py +++ b/sycl/test/on-device/lit.cfg.py @@ -191,8 +191,8 @@ def getDeviceCount(device_type): found_at_least_one_device = False -cpu_run_substitute = "true" -cpu_run_on_linux_substitute = "true " +cpu_run_substitute = "echo " +cpu_run_on_linux_substitute = "echo " cpu_check_substitute = "" cpu_check_on_linux_substitute = "" @@ -213,8 +213,8 @@ def getDeviceCount(device_type): config.substitutions.append( ('%CPU_CHECK_PLACEHOLDER', cpu_check_substitute) ) config.substitutions.append( ('%CPU_CHECK_ON_LINUX_PLACEHOLDER', cpu_check_on_linux_substitute) ) -gpu_run_substitute = "true" -gpu_run_on_linux_substitute = "true " +gpu_run_substitute = "echo " +gpu_run_on_linux_substitute = "echo " gpu_check_substitute = "" gpu_check_on_linux_substitute = "" @@ -244,7 +244,7 @@ def getDeviceCount(device_type): config.substitutions.append( ('%GPU_CHECK_PLACEHOLDER', gpu_check_substitute) ) config.substitutions.append( ('%GPU_CHECK_ON_LINUX_PLACEHOLDER', gpu_check_on_linux_substitute) ) -acc_run_substitute = "true" +acc_run_substitute = "echo " acc_check_substitute = "" if getDeviceCount("accelerator")[0]: found_at_least_one_device = True