Skip to content

Commit 2dadf83

Browse files
committed
move cts_exclude_filter to sycl dir
1 parent 827cef8 commit 2dadf83

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

devops/actions/run-tests/cts/action.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ runs:
2727
ref: ${{ inputs.cts_exclude_ref }}
2828
path: tmp
2929
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
3232
shell: bash
3333
run: |
34-
mv tmp/cts_exclude_filter .
34+
mv tmp/sycl .
3535
rm -rf tmp
3636
- name: Checkout SYCL CTS tests
3737
if: inputs.cts_testing_mode != 'run-only'
@@ -56,11 +56,11 @@ runs:
5656
# If CTS_TESTS_TO_BUILD is null - use filter
5757
if [ -z "$CTS_TESTS_TO_BUILD" ]; then
5858
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
6060
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
6262
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
6464
fi
6565
6666
# List excluded SYCL CTS categories:
@@ -119,7 +119,7 @@ runs:
119119
120120
# If the suite was built on another machine then the build contains the full
121121
# 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.
123123
# there is "cts_exclude_filter/OCL_CPU" for opencl:cpu device. Therefore,
124124
# these files may differ from each other, so when there is a pre-built set of
125125
# tests, we need to filter it according to the filter-file.
@@ -129,9 +129,9 @@ runs:
129129
run: |
130130
cts_exclude_filter=""
131131
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
133133
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
135135
fi
136136
137137
while IFS= read -r line; do
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)