diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-09-13 19:10:51 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-09-13 19:10:51 +0000 |
commit | a406849092567a448b6cef37df83df3c2b36f3ca (patch) | |
tree | 901b38c32667ee254a6052b4f18b2407e5ac2190 | |
parent | a1a32f7f5966edf47c1e22bcbeb2a09bc462ff0b (diff) |
Use a "better" unicode character, to avoid buildbot breakage on bots which can print some unicode characters.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163825 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Misc/unprintable.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Misc/unprintable.c b/test/Misc/unprintable.c index f48d15ce75..10a0d2450e 100644 --- a/test/Misc/unprintable.c +++ b/test/Misc/unprintable.c @@ -9,14 +9,14 @@ int main() { // 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"; |