[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Driver / cuda-not-found.cu
blob49462a66bab301601966d0d4c3d1b0268a313049
2 // Check that we raise an error if we're trying to compile CUDA code but can't
3 // find a CUDA install, unless -nocudainc was passed.
5 // RUN: not %clang -### --sysroot=%s/no-cuda-there --cuda-path-ignore-env %s 2>&1 | FileCheck %s --check-prefix ERR
6 // RUN: not %clang -### --cuda-path=%s/no-cuda-there %s 2>&1 | FileCheck %s --check-prefix ERR
7 // ERR: cannot find CUDA installation
9 // RUN: not %clang -### -nocudainc --sysroot=%s/no-cuda-there --cuda-path-ignore-env %s 2>&1 | FileCheck %s --check-prefix OK
10 // RUN: not %clang -### -nocudainc --cuda-path=%s/no-cuda-there %s 2>&1 | FileCheck %s --check-prefix OK
11 // OK-NOT: cannot find CUDA installation