]> granicus.if.org Git - clang/commitdiff
Change magic string "abc" to better magic string "qux".
authorMatt Beaumont-Gay <matthewbg@google.com>
Tue, 10 May 2011 20:28:29 +0000 (20:28 +0000)
committerMatt Beaumont-Gay <matthewbg@google.com>
Tue, 10 May 2011 20:28:29 +0000 (20:28 +0000)
Wait, what?

So, we run Clang (and LLVM) tests in an environment where the md5sum of the
input files becomes a component of the path. When testing the preprocessor,
the path becomes part of the output (in line directives). In this test, we
were grepping for the absence of "abc" in the output. When the stars aligned
properly, the md5sum component of the path contained "abc" and the test
failed. Oops.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@131147 91177308-0d34-0410-b5e6-96231b3b80d8

test/Lexer/block_cmt_end.c

index b03fb23f8eeb4c413ae9e3a82c9c08891f26b9ba..f54b6a4a21a82a4bbad3e5a42152486a28fdcf95 100644 (file)
@@ -1,7 +1,7 @@
 /*
   RUN: %clang_cc1 -E -trigraphs %s | grep bar
   RUN: %clang_cc1 -E -trigraphs %s | grep foo
-  RUN: %clang_cc1 -E -trigraphs %s | not grep abc
+  RUN: %clang_cc1 -E -trigraphs %s | not grep qux
   RUN: %clang_cc1 -E -trigraphs %s | not grep xyz
   RUN: %clang_cc1 -fsyntax-only -trigraphs -verify %s  
 */
@@ -9,7 +9,7 @@
 // This is a simple comment, /*/ does not end a comment, the trailing */ does.
 int i = /*/ */ 1;
 
-/* abc
+/* qux
 
 next comment ends with normal escaped newline:
 */
@@ -32,7 +32,3 @@ foo
 // rdar://6060752 - We should not get warnings about trigraphs in comments:
 // '????'
 /* ???? */
-
-
-
-