diff options
author | Sean Callanan <scallanan@apple.com> | 2016-02-12 18:42:00 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2016-02-12 18:42:00 +0000 |
commit | abece15858a8b6c66574279f60e27c6a1e52bebd (patch) | |
tree | 8a39414d77e1d2c6f404bd6e56d90454532b24ff /lldb/packages/Python/lldbsuite/test/lang/cpp/rdar12991846/main.cpp | |
parent | fd02aad8fdc057a8c408553fcdaa1883f6f58f07 (diff) | |
download | bcm5719-llvm-abece15858a8b6c66574279f60e27c6a1e52bebd.tar.gz bcm5719-llvm-abece15858a8b6c66574279f60e27c6a1e52bebd.zip |
Renamed TestRdar12991846 to the more descriptive TestUnicodeLiterals.
Test cases should not be named after PR or Radar numbers. It's fine to
annotate them with these numbers in comments, however.
llvm-svn: 260699
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/cpp/rdar12991846/main.cpp')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/cpp/rdar12991846/main.cpp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/rdar12991846/main.cpp b/lldb/packages/Python/lldbsuite/test/lang/cpp/rdar12991846/main.cpp deleted file mode 100644 index fda951a7899..00000000000 --- a/lldb/packages/Python/lldbsuite/test/lang/cpp/rdar12991846/main.cpp +++ /dev/null @@ -1,21 +0,0 @@ -//===-- main.c --------------------------------------------------*- C++ -*-===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - - -int main (int argc, char const *argv[]) -{ - auto cs16 = u"hello world ྒྙྐ"; - auto cs32 = U"hello world ྒྙྐ"; - char16_t *s16 = (char16_t *)u"ﺸﺵۻ"; - char32_t *s32 = (char32_t *)U"ЕЙРГЖО"; - s32 = nullptr; // Set break point at this line. - s32 = (char32_t *)U"෴"; - s16 = (char16_t *)u"色ハ匂ヘト散リヌルヲ"; - return 0; -} |