Skip to content

Commit 6f1227a

Browse files
committed
test
Signed-off-by: Sarnie, Nick <[email protected]>
1 parent c37f32d commit 6f1227a

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/sycl-windows-build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,11 @@ jobs:
141141
- name: check-llvm
142142
if: always() && !cancelled() && contains(inputs.changes, 'llvm')
143143
run: |
144-
cmake --build build --target check-llvm
144+
if "{{inputs.compiler}} == 'icx'"
145+
env LIT_FILTER="SYCL" cmake --build build --target check-llvm
146+
else
147+
cmake --build build --target check-llvm
148+
fi
145149
- name: check-clang
146150
if: always() && !cancelled() && contains(inputs.changes, 'clang')
147151
run: |

sycl/test/regression/host_tanpi_double_accuracy.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %clangxx -fsycl %s -o %t.out
1+
// RUN: %clangxx -fsycl -fno-fast-math %s -o %t.out
22
// RUN: %t.out
33
//
44
// Checks that sycl::tanpi with double has the accuracy required by the

0 commit comments

Comments
 (0)