10 lines · c
1// RUN: %clang -### -c %s -fmessage-length=80 2>&1 | FileCheck %s2// CHECK: "-fmessage-length=80"3 4/// Omit -fmessage-length=0 to simplify common CC1 command lines.5// RUN: %clang -### -c %s -fmessage-length=0 2>&1 | FileCheck --check-prefix=ZERO %s6// ZERO-NOT: "-fmessage-length=0"7 8// RUN: not %clang -### -c %s -fmessage-length=nan 2>&1 | FileCheck --check-prefix=ERR %s9// ERR: error: invalid argument 'nan' to -fmessage-length=10