blob: e40f7716f4136bfad4d0d85b9cc0e8ffec0480e7 [file] [log] [blame]
Ted Kremenekb22ea2a2012-07-07 05:53:30 +00001// RUN: %clang -### -pedantic -no-pedantic %s 2>&1 | FileCheck -check-prefix=NO_PEDANTIC %s
2// RUN: %clang -### -pedantic -Wno-pedantic %s 2>&1 | FileCheck -check-prefix=PEDANTIC %s
3// NO_PEDANTIC-NOT: -pedantic
4// RUN: %clang -### -pedantic -pedantic -no-pedantic -pedantic %s 2>&1 | FileCheck -check-prefix=PEDANTIC %s
5// RUN: %clang -### -pedantic -pedantic -no-pedantic -Wpedantic %s 2>&1 | FileCheck -check-prefix=NO_PEDANTIC %s
6// PEDANTIC: -pedantic
NAKAMURA Takumi556d7132012-12-11 07:06:09 +00007// REQUIRES: clang-driver