20 lines · c
1// RUN: rm -rf %t2// RUN: mkdir %t3 4// Check that -fdriver-only doesn't actually run the generated -cc1 job.5//6// RUN: %clang -c %s -o %t/a.o -fdriver-only7// RUN: not cat %t/a.o8 9// Check that -fdriver-only respects errors.10//11// RUN: not %clang -c %s -fdriver-only -target i386-apple-darwin9 -m32 -Xarch_i386 -o12 13// Check that -fdriver-only respects -v.14//15// RUN: %clang -c %s -fdriver-only -v 2>&1 | FileCheck %s --check-prefix=CHECK-V16// CHECK-V: {{.*}} "-cc1"17//18// RUN: %clang -c %s -fdriver-only 2>&1 | FileCheck %s --check-prefix=CHECK-NO-V --allow-empty19// CHECK-NO-V-NOT: {{.*}} "-cc1"20