Skip to content

Commit 3b97561

Browse files
authored
[SYCL][test-e2e] Fix how clang++ is called (#11785)
This test called clang++ directly. I think we need to use %clangxx Thanks Signed-off-by: Arvind Sudarsanam <[email protected]>
1 parent cee6122 commit 3b97561

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sycl/test-e2e/Basic/spirv_device_obj_smoke.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// UNSUPPORTED: cuda || hip
2-
// RUN: clang++ -fsycl -fsycl-device-obj=spirv -c -o %t.o %s
3-
// RUN: clang++ -fsycl -o %t.out %t.o
2+
// RUN: %clangxx -fsycl -fsycl-device-obj=spirv -c -o %t.o %s
3+
// RUN: %clangxx -fsycl -o %t.out %t.o
44
// RUN: %{run} %t.out
55

66
// This test verifies SPIR-V based fat objects.

0 commit comments

Comments
 (0)