From 8ac1419dfd98bada8bae719f54bfd6eabd29126e Mon Sep 17 00:00:00 2001 From: Richard Trieu Date: Thu, 8 Jan 2015 02:40:08 +0000 Subject: [PATCH] Attempt to fix test from r225423 to get build bots green. llvm-svn: 225426 --- clang/test/Misc/diag-special-chars.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/clang/test/Misc/diag-special-chars.c b/clang/test/Misc/diag-special-chars.c index 007f9d0..e656a09b 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 Bye +// CHECK: error: Hi Bye +// CHECK: #error Hi Bye -- 2.7.4