File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed
Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change 1+ // /
2+ // / Perform several driver tests for SYCL device side sanitizers on Windows
3+ // /
4+
5+ // REQUIRES: system-windows
6+
7+ // / ###########################################################################
8+
9+ // RUN: %clangxx -fsycl -fsanitize=address -c %s -### 2>&1 \
10+ // RUN: | FileCheck --check-prefix=SYCL-ASAN %s
11+ // RUN: %clangxx -fsycl -Xarch_device -fsanitize=address -c %s -### 2>&1 \
12+ // RUN: | FileCheck --check-prefix=SYCL-ASAN %s
13+
14+ // SYCL-ASAN: ignoring '-fsanitize=address' option as it is not currently supported for target 'spir64-unknown-unknown'
15+
16+ // / ###########################################################################
17+
18+ // RUN: %clangxx -fsycl -fsanitize=memory -c %s -### 2>&1 \
19+ // RUN: | FileCheck --check-prefix=SYCL-MSAN %s
20+ // RUN: %clangxx -fsycl -Xarch_device -fsanitize=memory -c %s -### 2>&1 \
21+ // RUN: | FileCheck --check-prefix=SYCL-MSAN %s
22+
23+ // SYCL-MSAN: ignoring '-fsanitize=memory' option as it is not currently supported for target 'spir64-unknown-unknown'
Original file line number Diff line number Diff line change 1+ // /
2+ // / Perform several driver tests for SYCL device side sanitizers on Linux
3+ // /
4+
15// UNSUPPORTED: system-windows
26
37// / ###########################################################################
You can’t perform that action at this time.
0 commit comments