Skip to content

Commit ed7dec2

Browse files
committed
[SYCL] Fix affected e2e test cases
Signed-off-by: Hu, Peisen <[email protected]>
1 parent 21fd2d9 commit ed7dec2

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

sycl/test-e2e/Basic/work_group_size_prop.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %{build} -o %t.out
1+
// RUN: %{build} -o %t.out -Wno-deprecated-declarations
22
// RUN: %{run} %t.out
33

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %{build} -o %t.out
1+
// RUN: %{build} -o %t.out -Wno-deprecated-declarations
22
// RUN: %{run} %t.out
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 %}

sycl/test-e2e/GroupAlgorithm/root_group.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Fails with opencl non-cpu, enable when fixed.
22
// XFAIL: (opencl && !cpu && !accelerator)
3-
// RUN: %{build} -I . -o %t.out %if any-device-is-cuda %{ -Xsycl-target-backend=nvptx64-nvidia-cuda --cuda-gpu-arch=sm_70 %}
3+
// RUN: %{build} -I . -o %t.out %if any-device-is-cuda %{ -Xsycl-target-backend=nvptx64-nvidia-cuda --cuda-gpu-arch=sm_70 %} -Wno-deprecated-declarations
44
// RUN: %{run} %t.out
55

66
// Disabled temporarily while investigation into the failure is ongoing.

sycl/test-e2e/Properties/cache_config.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// REQUIRES: gpu, level_zero
22

3-
// RUN: %{build} -o %t.out
3+
// RUN: %{build} -o %t.out -Wno-deprecated-declarations
44
// RUN: env UR_L0_DEBUG=1 %{run} %t.out 2>&1 | FileCheck %s
55

66
#include <numeric>

sycl/test-e2e/VirtualFunctions/2/1/1/missing-overrides.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %{build} -o %t.out %helper-includes
1+
// RUN: %{build} -o %t.out %helper-includes -Wno-deprecated-declarations
22
// RUN: %{run} %t.out
33

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

sycl/test-e2e/VirtualFunctions/2/1/1/more-complex-hierarchy.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %{build} -o %t.out %helper-includes
1+
// RUN: %{build} -o %t.out %helper-includes -Wno-deprecated-declarations
22
// RUN: %{run} %t.out
33

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

sycl/test-e2e/VirtualFunctions/2/1/1/simple-hierarchy.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %{build} -o %t.out %helper-includes
1+
// RUN: %{build} -o %t.out %helper-includes -Wno-deprecated-declarations
22
// RUN: %{run} %t.out
33

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

sycl/test-e2e/VirtualFunctions/2/2/single-construct-single-use.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %{build} -o %t.out %helper-includes
1+
// RUN: %{build} -o %t.out %helper-includes -Wno-deprecated-declarations
22
// RUN: %{run} %t.out
33

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

sycl/test-e2e/VirtualFunctions/misc/math.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This test checks that SYCL math built-in functions work correctly
44
// inside virtual functions.
55
//
6-
// RUN: %{build} -o %t.out %helper-includes
6+
// RUN: %{build} -o %t.out %helper-includes -Wno-deprecated-declarations
77
// RUN: %{run} %t.out
88

99
#include <sycl/builtins.hpp>

sycl/test-e2e/forward_progress/forward_progress_kernel_param_L0_gpu.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// REQUIRES: level_zero, gpu
2-
// RUN: %{build} -o %t.out
2+
// RUN: %{build} -o %t.out -Wno-deprecated-declarations
33
// RUN: %{run} %t.out
44

55
// The purpose of this test is to check that the forward_progress_guarantee

0 commit comments

Comments
 (0)