diff --git a/sycl/test-e2e/Basic/fpga_tests/fpga_io_pipes.cpp b/sycl/test-e2e/Basic/fpga_tests/fpga_io_pipes.cpp index ed6ff3fc6dccb..1eb50966b76ee 100644 --- a/sycl/test-e2e/Basic/fpga_tests/fpga_io_pipes.cpp +++ b/sycl/test-e2e/Basic/fpga_tests/fpga_io_pipes.cpp @@ -1,6 +1,5 @@ -// REQUIRES: accelerator -// RUN: %{build} -o %t.out -// RUNx: %{run} %t.out +// RUN: %{build} -fsyntax-only -o %t.out +// TODO: launch the test if the feature is supported. //==------------ fpga_io_pipes.cpp - SYCL FPGA pipes test ------------------==// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. diff --git a/sycl/test-e2e/Graph/Explicit/host_task_last.cpp b/sycl/test-e2e/Graph/Explicit/host_task_last.cpp index fe078facd4fae..a64475a6530ff 100644 --- a/sycl/test-e2e/Graph/Explicit/host_task_last.cpp +++ b/sycl/test-e2e/Graph/Explicit/host_task_last.cpp @@ -3,9 +3,11 @@ // Extra run to check for leaks in Level Zero using UR_L0_LEAKS_DEBUG // RUN: %if level_zero %{env SYCL_PI_LEVEL_ZERO_USE_IMMEDIATE_COMMANDLISTS=0 %{l0_leak_check} %{run} %t.out 2>&1 | FileCheck %s --implicit-check-not=LEAK %} -// Disabled due to https://github.com/intel/llvm/issues/14473 +// clang-format off // Extra run to check for immediate-command-list in Level Zero -// RUNx: %if level_zero %{env SYCL_PI_LEVEL_ZERO_USE_IMMEDIATE_COMMANDLISTS=1 %{l0_leak_check} %{run} %t.out 2>&1 | FileCheck %s --implicit-check-not=LEAK %} +// TODO: enable the run-line below when the issue is fixed - https://github.com/intel/llvm/issues/14473 +// %if level_zero %{env SYCL_PI_LEVEL_ZERO_USE_IMMEDIATE_COMMANDLISTS=1 %{l0_leak_check} %{run} %t.out 2>&1 | FileCheck %s --implicit-check-not=LEAK %} +// clang-format on // REQUIRES: aspect-usm_shared_allocations diff --git a/sycl/test-e2e/Graph/RecordReplay/host_task_last.cpp b/sycl/test-e2e/Graph/RecordReplay/host_task_last.cpp index 450ab65d05942..28eee1491a264 100644 --- a/sycl/test-e2e/Graph/RecordReplay/host_task_last.cpp +++ b/sycl/test-e2e/Graph/RecordReplay/host_task_last.cpp @@ -3,9 +3,11 @@ // Extra run to check for leaks in Level Zero using UR_L0_LEAKS_DEBUG // RUN: %if level_zero %{env SYCL_PI_LEVEL_ZERO_USE_IMMEDIATE_COMMANDLISTS=0 %{l0_leak_check} %{run} %t.out 2>&1 | FileCheck %s --implicit-check-not=LEAK %} -// Disabled due to https://github.com/intel/llvm/issues/14473 +// clang-format off // Extra run to check for immediate-command-list in Level Zero -// RUNx: %if level_zero %{env SYCL_PI_LEVEL_ZERO_USE_IMMEDIATE_COMMANDLISTS=1 %{l0_leak_check} %{run} %t.out 2>&1 | FileCheck %s --implicit-check-not=LEAK %} +// TODO: enable the run below when the issue is fixed - https://github.com/intel/llvm/issues/14473 +// %if level_zero %{env SYCL_PI_LEVEL_ZERO_USE_IMMEDIATE_COMMANDLISTS=1 %{l0_leak_check} %{run} %t.out 2>&1 | FileCheck %s --implicit-check-not=LEAK %} +// clang-format on // REQUIRES: aspect-usm_shared_allocations diff --git a/sycl/test-e2e/OptionalKernelFeatures/fp64-conv-emu.cpp b/sycl/test-e2e/OptionalKernelFeatures/fp64-conv-emu.cpp index 5094a1d0af48f..81934fd4d2184 100644 --- a/sycl/test-e2e/OptionalKernelFeatures/fp64-conv-emu.cpp +++ b/sycl/test-e2e/OptionalKernelFeatures/fp64-conv-emu.cpp @@ -1,9 +1,8 @@ -// REQUIRES: ocloc, gpu, linux +// REQUIRES: ocloc, gpu, linux, aspect-fp64 // UNSUPPORTED: cuda, hip // RUN: %clangxx -fsycl -fsycl-targets=spir64_gen -Xsycl-target-backend "-device pvc" -fsycl-fp64-conv-emu -O0 %s -o %t_opt.out -// TODO: Enable when GPU driver is updated. -// RUNx: %{run} %t_opt.out +// RUN: %{run} %t_opt.out // Tests that aspect::fp64 is not emitted correctly when -fsycl-fp64-conv-emu // flag is used. diff --git a/sycl/test-e2e/Regression/isordered.cpp b/sycl/test-e2e/Regression/isordered.cpp index 7d3d0d32b688c..05ec9c0b73574 100644 --- a/sycl/test-e2e/Regression/isordered.cpp +++ b/sycl/test-e2e/Regression/isordered.cpp @@ -1,5 +1,6 @@ +// REQUIRES: aspect-fp64, aspect-fp16 // RUN: %{build} -o %t.out -// RUNx: %{run} %t.out +// RUN: %{run} %t.out #include diff --git a/sycl/test-e2e/Regression/mad_sat.cpp b/sycl/test-e2e/Regression/mad_sat.cpp index 401a2644d1743..964997171672f 100644 --- a/sycl/test-e2e/Regression/mad_sat.cpp +++ b/sycl/test-e2e/Regression/mad_sat.cpp @@ -1,5 +1,5 @@ // RUN: %{build} -Wno-error=integer-overflow -Wno-error=implicitly-unsigned-literal -o %t.out -// RUNx: %{run} %t.out +// RUN: %{run} %t.out #include diff --git a/sycl/test-e2e/SharedLib/use_with_dlopen.cpp b/sycl/test-e2e/SharedLib/use_with_dlopen.cpp index b904b8c3b1aa0..d042e8d711ebb 100644 --- a/sycl/test-e2e/SharedLib/use_with_dlopen.cpp +++ b/sycl/test-e2e/SharedLib/use_with_dlopen.cpp @@ -14,8 +14,10 @@ // RUN: %{run} %t3.out // This causes SEG. FAULT. -// RUNx: %{compile} -o %t4.out -DRUN_LAST -// RUNx: %{run} %t4.out +// Enable the lines below when the issue is fixed: +// https://github.com/intel/llvm/issues/16031 +// %{compile} -o %t4.out -DRUN_LAST +// %{run} %t4.out #include diff --git a/sycl/test-e2e/SharedLib/use_with_dlopen_verify_cache.cpp b/sycl/test-e2e/SharedLib/use_with_dlopen_verify_cache.cpp index fcc50a6acaaf4..ef90a0a3c9651 100644 --- a/sycl/test-e2e/SharedLib/use_with_dlopen_verify_cache.cpp +++ b/sycl/test-e2e/SharedLib/use_with_dlopen_verify_cache.cpp @@ -15,8 +15,9 @@ // clang-format off // This causes SEG. FAULT. -// RUNx: %{compile} -DRUN_LAST -// RUNx: env SYCL_UR_TRACE=2 %{run} %t.out 2>&1 | FileCheck %s --check-prefixes=CHECK-LAST,CHECK --implicit-check-not=piProgramBuild +// Enable the lines below when the issue is fixed - https://github.com/intel/llvm/issues/16031 +// %{compile} -DRUN_LAST +// env SYCL_UR_TRACE=2 %{run} %t.out 2>&1 | FileCheck %s --check-prefixes=CHECK-LAST,CHECK --implicit-check-not=piProgramBuild // clang-format on #include