xref: /llvm-project/clang/test/Driver/driver-only.c (revision 5c29ffda9056e1b4602a46051371f0184ce357b2)
1 // RUN: rm -rf %t
2 // RUN: mkdir %t
3 
4 // Check that -fdriver-only doesn't actually run the generated -cc1 job.
5 //
6 // RUN: %clang -c %s -o %t/a.o -fdriver-only
7 // RUN: not cat %t/a.o
8 
9 // Check that -fdriver-only respects errors.
10 //
11 // RUN: not %clang -c %s -fdriver-only -target i386-apple-darwin9 -m32 -Xarch_i386 -o
12 
13 // Check that -fdriver-only respects -v.
14 //
15 // RUN: %clang -c %s -fdriver-only -v 2>&1 | FileCheck %s --check-prefix=CHECK-V
16 // CHECK-V: {{.*}} "-cc1"
17 //
18 // RUN: %clang -c %s -fdriver-only    2>&1 | FileCheck %s --check-prefix=CHECK-NO-V --allow-empty
19 // CHECK-NO-V-NOT: {{.*}} "-cc1"
20