diff options
| author | Richard Trieu <rtrieu@google.com> | 2015-01-08 02:40:08 +0000 |
|---|---|---|
| committer | Richard Trieu <rtrieu@google.com> | 2015-01-08 02:40:08 +0000 |
| commit | 8ac1419dfd98bada8bae719f54bfd6eabd29126e (patch) | |
| tree | 85e2f5d873b7563af1b8309d04a3991bd566f33c | |
| parent | ede5965b2a890aba47a8bc885c5b43a8ce593770 (diff) | |
| download | bcm5719-llvm-8ac1419dfd98bada8bae719f54bfd6eabd29126e.tar.gz bcm5719-llvm-8ac1419dfd98bada8bae719f54bfd6eabd29126e.zip | |
Attempt to fix test from r225423 to get build bots green.
llvm-svn: 225426
| -rw-r--r-- | clang/test/Misc/diag-special-chars.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/clang/test/Misc/diag-special-chars.c b/clang/test/Misc/diag-special-chars.c index 007f9d04f03..e656a09b427 100644 --- a/clang/test/Misc/diag-special-chars.c +++ b/clang/test/Misc/diag-special-chars.c @@ -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 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 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 |

