[cfe-commits] r163825 - /cfe/trunk/test/Misc/unprintable.c
Richard Smith
richard-llvm at metafoo.co.uk
Thu Sep 13 12:10:51 PDT 2012
Author: rsmith
Date: Thu Sep 13 14:10:51 2012
New Revision: 163825
URL: http://llvm.org/viewvc/llvm-project?rev=163825&view=rev
Log:
Use a "better" unicode character, to avoid buildbot breakage on bots which can print some unicode characters.
Modified:
cfe/trunk/test/Misc/unprintable.c
Modified: cfe/trunk/test/Misc/unprintable.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Misc/unprintable.c?rev=163825&r1=163824&r2=163825&view=diff
==============================================================================
--- cfe/trunk/test/Misc/unprintable.c (original)
+++ cfe/trunk/test/Misc/unprintable.c Thu Sep 13 14:10:51 2012
@@ -9,14 +9,14 @@
// CHECK: {{^ ~\^~~~~~~~~~~~~~~~}}
// CHECK: {{^ ~ \^ ~}}
- (void)"ÊÑ¿ô";
+ (void)"Êð¿ô";
-// CHECK: {{^ \(void\)"<CA><U\+047F><F4>";}}
+// CHECK: {{^ \(void\)"<CA><U\+1F47F><F4>";}}
// CHECK: {{^ \^~~~}}
 int n = 0;
-// CHECK: {{^<U\+00A0> int n = 0;}}
+// CHECK: {{ int n = 0;}}
// CHECK: {{^\^}}
"ð¿ \z";
More information about the cfe-commits
mailing list