Skip to content

Commit 0e9e055

Browse files
committed
Update tests
1 parent 38f5b3e commit 0e9e055

File tree

8 files changed

+22
-20
lines changed

8 files changed

+22
-20
lines changed

sycl/test-e2e/Basic/fpga_tests/fpga_io_pipes.cpp

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
1-
// The test is disabled, since no support added in FPGA backend yet. Check
2-
// implementation correctness from CXX and SYCL languages perspective.
3-
// UNSUPPORTED: true
4-
5-
// REQUIRES: accelerator
6-
// RUN: %{build} -o %t.out
7-
// RUN: %{run} %t.out
1+
// RUN: %{build} -fsyntax-only -o %t.out
2+
// TODO: launch the test if the feature is supported.
83
//==------------ fpga_io_pipes.cpp - SYCL FPGA pipes test ------------------==//
94
//
105
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
@@ -19,6 +14,9 @@
1914

2015
#include "io_pipe_def.h"
2116

17+
// TODO: run is disabled, since no support added in FPGA backend yet. Check
18+
// implementation correctness from CXX and SYCL languages perspective.
19+
2220
// This test is supposed to be run only on Intel FPGA emulator. Change it when
2321
// we have more experience with IO pipe feature in SYCL.
2422
// The emulator creates files (one for I pipe, another for O pipe) with the

sycl/test-e2e/Graph/Explicit/host_task_last.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@
33
// Extra run to check for leaks in Level Zero using UR_L0_LEAKS_DEBUG
44
// 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 %}
55

6+
// clang-format off
67
// Extra run to check for immediate-command-list in Level Zero
7-
// 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 %}
8-
// RUNx-TRACKER: https://github.com/intel/llvm/issues/14473
8+
// TODO: enable the run-line below when the issue is fixed - https://github.com/intel/llvm/issues/14473
9+
// %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 %}
10+
// clang-format on
911

1012
// REQUIRES: aspect-usm_shared_allocations
1113

sycl/test-e2e/Graph/RecordReplay/host_task_last.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@
33
// Extra run to check for leaks in Level Zero using UR_L0_LEAKS_DEBUG
44
// 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 %}
55

6+
// clang-format off
67
// Extra run to check for immediate-command-list in Level Zero
7-
// 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 %}
8-
// RUNx-TRACKER: https://github.com/intel/llvm/issues/14473
8+
// TODO: enable the run below when the issue is fixed - https://github.com/intel/llvm/issues/14473
9+
// %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 %}
10+
// clang-format on
911

1012
// REQUIRES: aspect-usm_shared_allocations
1113

sycl/test-e2e/OptionalKernelFeatures/fp64-conv-emu.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// REQUIRES: ocloc, gpu, linux
1+
// REQUIRES: ocloc, gpu, linux, aspect-fp64
22
// UNSUPPORTED: cuda, hip
33

44
// RUN: %clangxx -fsycl -fsycl-targets=spir64_gen -Xsycl-target-backend "-device pvc" -fsycl-fp64-conv-emu -O0 %s -o %t_opt.out

sycl/test-e2e/Regression/isordered.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// REQUIRES: aspect-fp64, aspect-fp16
12
// RUN: %{build} -o %t.out
23
// RUN: %{run} %t.out
34

sycl/test-e2e/SharedLib/use_with_dlopen.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
// RUN: %{run} %t3.out
1515

1616
// This causes SEG. FAULT.
17-
// RUNx: %{compile} -o %t4.out -DRUN_LAST
18-
// RUNx: %{run} %t4.out
19-
// RUNx-TRACKER: https://github.com/intel/llvm/issues/16031
17+
// Enable the lines below when the issue is fixed - https://github.com/intel/llvm/issues/16031
18+
// %{compile} -o %t4.out -DRUN_LAST
19+
// %{run} %t4.out
2020

2121
#include <sycl/detail/core.hpp>
2222

sycl/test-e2e/SharedLib/use_with_dlopen_verify_cache.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515

1616
// clang-format off
1717
// This causes SEG. FAULT.
18-
// RUNx: %{compile} -DRUN_LAST
19-
// RUNx: env SYCL_UR_TRACE=2 %{run} %t.out 2>&1 | FileCheck %s --check-prefixes=CHECK-LAST,CHECK --implicit-check-not=piProgramBuild
20-
// RUNx-TRACKER: https://github.com/intel/llvm/issues/16031
18+
// Enable the lines below when the issue is fixed - https://github.com/intel/llvm/issues/16031
19+
// %{compile} -DRUN_LAST
20+
// env SYCL_UR_TRACE=2 %{run} %t.out 2>&1 | FileCheck %s --check-prefixes=CHECK-LAST,CHECK --implicit-check-not=piProgramBuild
2121
// clang-format on
2222

2323
#include <sycl/detail/core.hpp>

sycl/test/e2e_test_requirements/no-unsupported-without-info.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
// tests to match the required format and in that case you should just update
5555
// (i.e. reduce) the number and the list below.
5656
//
57-
// NUMBER-OF-UNSUPPORTED-WITHOUT-INFO: 478
57+
// NUMBER-OF-UNSUPPORTED-WITHOUT-INFO: 477
5858
//
5959
// List of improperly UNSUPPORTED tests.
6060
// Remove the CHECK once the test has been properly UNSUPPORTED.
@@ -77,7 +77,6 @@
7777
// CHECK-NEXT: Basic/buffer/subbuffer.cpp
7878
// CHECK-NEXT: Basic/build_log.cpp
7979
// CHECK-NEXT: Basic/code_location_e2e.cpp
80-
// CHECK-NEXT: Basic/fpga_tests/fpga_io_pipes.cpp
8180
// CHECK-NEXT: Basic/free_function_queries/free_function_queries.cpp
8281
// CHECK-NEXT: Basic/free_function_queries/free_function_queries_sub_group.cpp
8382
// CHECK-NEXT: Basic/free_function_queries/free_function_queries_sub_group.cpp

0 commit comments

Comments
 (0)