]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Driver/cuda-no-sanitizers.cu
Vendor import of clang trunk r351319 (just before the release_80 branch
[FreeBSD/FreeBSD.git] / test / Driver / cuda-no-sanitizers.cu
1 // Check that -fsanitize=foo doesn't get passed down to device-side
2 // compilation.
3 //
4 // REQUIRES: clang-driver
5 //
6 // RUN: %clang -### -target x86_64-linux-gnu -c --cuda-gpu-arch=sm_20 -fsanitize=address %s 2>&1 | \
7 // RUN:   FileCheck %s
8
9 // CHECK-NOT: error: unsupported option '-fsanitize=address'
10 // CHECK-DAG: "-fcuda-is-device"
11 // CHECK-NOT: "-fsanitize=address"
12 // CHECK-DAG: "-triple" "x86_64-unknown-linux-gnu"
13 // CHECK: "-fsanitize=address"