@@ -27,11 +27,11 @@ runs:
27
27
ref : ${{ inputs.cts_exclude_ref }}
28
28
path : tmp
29
29
sparse-checkout : |
30
- cts_exclude_filter
31
- - name : Move cts_exclude_filter to root
30
+ sycl/ cts_exclude_filter
31
+ - name : Move sycl to root
32
32
shell : bash
33
33
run : |
34
- mv tmp/cts_exclude_filter .
34
+ mv tmp/sycl .
35
35
rm -rf tmp
36
36
- name : Checkout SYCL CTS tests
37
37
if : inputs.cts_testing_mode != 'run-only'
@@ -56,11 +56,11 @@ runs:
56
56
# If CTS_TESTS_TO_BUILD is null - use filter
57
57
if [ -z "$CTS_TESTS_TO_BUILD" ]; then
58
58
if [ "${{ contains(inputs.cts_testing_mode, 'build-only') }}" = "true" ]; then
59
- cts_exclude_filter=$PWD/cts_exclude_filter/compfails
59
+ cts_exclude_filter=$PWD/sycl/ cts_exclude_filter/compfails
60
60
elif [ "${{ contains(inputs.target_devices, 'opencl:cpu') }}" = "true" ]; then
61
- cts_exclude_filter=$PWD/cts_exclude_filter/OCL_CPU
61
+ cts_exclude_filter=$PWD/sycl/ cts_exclude_filter/OCL_CPU
62
62
elif [ "${{ contains(inputs.target_devices, 'level_zero:gpu') }}" = "true" ]; then
63
- cts_exclude_filter=$PWD/cts_exclude_filter/L0_GPU
63
+ cts_exclude_filter=$PWD/sycl/ cts_exclude_filter/L0_GPU
64
64
fi
65
65
66
66
# List excluded SYCL CTS categories:
@@ -119,7 +119,7 @@ runs:
119
119
120
120
# If the suite was built on another machine then the build contains the full
121
121
# set of tests. We have special files to filter out some test categories,
122
- # see "cts_exclude_filter/*". Each configuration has its own file, e.g.
122
+ # see "sycl/ cts_exclude_filter/*". Each configuration has its own file, e.g.
123
123
# there is "cts_exclude_filter/OCL_CPU" for opencl:cpu device. Therefore,
124
124
# these files may differ from each other, so when there is a pre-built set of
125
125
# tests, we need to filter it according to the filter-file.
@@ -129,9 +129,9 @@ runs:
129
129
run : |
130
130
cts_exclude_filter=""
131
131
if [ "${{ contains(inputs.target_devices, 'opencl:cpu') }}" = "true" ]; then
132
- cts_exclude_filter=$PWD/cts_exclude_filter/OCL_CPU
132
+ cts_exclude_filter=$PWD/sycl/ cts_exclude_filter/OCL_CPU
133
133
elif [ "${{ contains(inputs.target_devices, 'level_zero:gpu') }}" = "true" ]; then
134
- cts_exclude_filter=$PWD/cts_exclude_filter/L0_GPU
134
+ cts_exclude_filter=$PWD/sycl/ cts_exclude_filter/L0_GPU
135
135
fi
136
136
137
137
while IFS= read -r line; do
0 commit comments