diff options
author | Chris Lattner <sabre@nondot.org> | 2009-10-19 06:45:49 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-10-19 06:45:49 +0000 |
commit | 2c021110006b77868c4719b29f51dcf3fbb661a5 (patch) | |
tree | 411b03da6f7318854ec63b13b3c361f2bb7ad971 /clang/test/Misc/message-length.c | |
parent | aa1332ed72c7f753527dff073a19a0376c4c3437 (diff) | |
download | bcm5719-llvm-2c021110006b77868c4719b29f51dcf3fbb661a5.tar.gz bcm5719-llvm-2c021110006b77868c4719b29f51dcf3fbb661a5.zip |
convert this to FileCheck, PR5232
llvm-svn: 84466
Diffstat (limited to 'clang/test/Misc/message-length.c')
-rw-r--r-- | clang/test/Misc/message-length.c | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/clang/test/Misc/message-length.c b/clang/test/Misc/message-length.c index ac5dab99ca5..69a5c1c1913 100644 --- a/clang/test/Misc/message-length.c +++ b/clang/test/Misc/message-length.c @@ -1,14 +1,7 @@ -// RUN: clang -fsyntax-only -fmessage-length=72 %s 2> %t && - -// RUN: grep -A4 "FILE:23" %t > %t.msg && -// FIXME: This diagnostic is getting truncated very poorly. -// RUN: grep -e '^ ...// some long comment text and a brace, eh {} ' %t.msg && -// RUN: grep -e '^ \^' %t.msg && -// RUN: clang -fsyntax-only -fmessage-length=1 %s && -// RUN: true +// RUN: clang -fsyntax-only -fmessage-length=72 %s 2>&1 | tee /tmp/out.txt | FileCheck -strict-whitespace %s && +// RUN: clang -fsyntax-only -fmessage-length=1 %s // Hack so we can check things better, force the file name and line. - # 1 "FILE" 1 /* It's tough to verify the results of this test mechanically, since @@ -33,3 +26,7 @@ void a_very_long_line(int *ip, float *FloatPointer) { } #pragma STDC CX_LIMITED_RANGE // some long comment text and a brace, eh {} + + +// CHECK: FILE:23:78 +// CHECK: {{^ ...some long comment text and a brace, eh {} $}} |