]> granicus.if.org Git - clang/commitdiff
Attempt to fix test from r225423 to get build bots green.
authorRichard Trieu <rtrieu@google.com>
Thu, 8 Jan 2015 02:40:08 +0000 (02:40 +0000)
committerRichard Trieu <rtrieu@google.com>
Thu, 8 Jan 2015 02:40:08 +0000 (02:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@225426 91177308-0d34-0410-b5e6-96231b3b80d8

test/Misc/diag-special-chars.c

index 007f9d04f03fb83a897b945972aab3cc61e477dd..e656a09b427997746248e37a0d26dd75cb7c8643 100644 (file)
@@ -1,11 +1,11 @@
 // RUN: %clang_cc1 %s -verify
 // RUN: not %clang_cc1 %s 2>&1 | FileCheck %s
 
-// There are two special characters on the following line, one which is used
-// as a marker character for diagnostic printing.  Ensure diagnostics involving
-// these characters do not cause problems with the diagnostic printer.
-#error Hi \7f \80 Bye
-//expected-error@-1 {{Hi   Bye}}
+// There is a special characters on the following line, which is used as a
+// marker character for diagnostic printing.  Ensure diagnostics involving
+// this character does not cause problems with the diagnostic printer.
+#error Hi \7f Bye
+//expected-error@-1 {{Hi  Bye}}
 
-// CHECK: error: Hi   Bye
-// CHECK: #error Hi <U+007F> <U+0080> Bye
+// CHECK: error: Hi  Bye
+// CHECK: #error Hi <U+007F> Bye