teak-llvm/clang/test/Driver/option-aliases.c
Rafael Espindola 0c9fa3f982 Use -### instead of -ccc-print-options.
Convert the last few tests using -ccc-print-options to -### and remove
-ccc-print-options.

llvm-svn: 189802
2013-09-03 13:26:49 +00:00

15 lines
325 B
C

// RUN: %clang -### -S \
// RUN: --save-temps --undefine-macro=FOO --undefine-macro BAR \
// RUN: --param=FOO --output=FOO %s 2>&1 | \
// RUN: FileCheck %s
// CHECK: "-cc1"
// CHECK: "-E"
// CHECK: "-U" "FOO"
// CHECK: "-U" "BAR"
// CHECK: "-o" "option-aliases.i"
// CHECK-NEXT: "-cc1"
// CHECK: "-S"
// CHECK: "-o" "FOO"