diff options
author | Steve Naroff <snaroff@apple.com> | 2009-04-03 01:25:18 +0000 |
---|---|---|
committer | Steve Naroff <snaroff@apple.com> | 2009-04-03 01:25:18 +0000 |
commit | 3e90e3335670a52ef973a4f3a46eaf84d21b40b3 (patch) | |
tree | d9d4c1d4e57f23f9f98eac26cdf0dc131576cba6 /clang | |
parent | fd6cfcffa20b3c01f1c74ffe700e32643d71f109 (diff) | |
download | bcm5719-llvm-3e90e3335670a52ef973a4f3a46eaf84d21b40b3.tar.gz bcm5719-llvm-3e90e3335670a52ef973a4f3a46eaf84d21b40b3.zip |
Tweak test (now that http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20090330/015001.html is fixed).
llvm-svn: 68364
Diffstat (limited to 'clang')
-rw-r--r-- | clang/test/SemaObjC/ucn-objc-string.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/SemaObjC/ucn-objc-string.m b/clang/test/SemaObjC/ucn-objc-string.m index 5b611f6005f..1d94ea2363a 100644 --- a/clang/test/SemaObjC/ucn-objc-string.m +++ b/clang/test/SemaObjC/ucn-objc-string.m @@ -6,8 +6,8 @@ int main() { NSLog(@"Hi…"); NSLog(@"Exposé"); NSLog(@"\U00010400\U0001D12B"); - // FIXME: the following is still not working (will investigate). - //NSLog(@"hello \u2192 \u2603 \u2190 world"); + NSLog(@"hello \u2192 \u2603 \u2190 world"); + NSLog(@"hello → ☃ ← world"); return 0; } |