diff options
author | Zachary Turner <zturner@google.com> | 2016-01-27 19:00:51 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2016-01-27 19:00:51 +0000 |
commit | 671e6340da589fe94d30fa97fb3c89318881a775 (patch) | |
tree | 9ca438b32799605efaa0b2b22adf26fa265ea937 /lldb/packages/Python/lldbsuite/test/lang | |
parent | e89a66bd4a30a9c421405f56aa93ce6818fdddc7 (diff) | |
download | bcm5719-llvm-671e6340da589fe94d30fa97fb3c89318881a775.tar.gz bcm5719-llvm-671e6340da589fe94d30fa97fb3c89318881a775.zip |
Resubmit r258759 with proper unicode handling.
Instead of opening the file in unicode mode, we need only encode
data which potentially has non-ASCII characters as UTF8 before
writing. This should work across both Python versions, and is
also far simpler than anything else discussed.
llvm-svn: 258969
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/cpp/char1632_t/TestChar1632T.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/char1632_t/TestChar1632T.py b/lldb/packages/Python/lldbsuite/test/lang/cpp/char1632_t/TestChar1632T.py index 9bb1faf4ba6..fbb5551deee 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/cpp/char1632_t/TestChar1632T.py +++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/char1632_t/TestChar1632T.py @@ -25,7 +25,6 @@ class Char1632TestCase(TestBase): line_number(self.source, '// breakpoint2') ] @expectedFailureIcc # ICC (13.1) does not emit the DW_TAG_base_type for char16_t and char32_t. - @expectedFailureWindows("llvm.org/pr24489: Name lookup not working correctly on Windows") def test(self): """Test that the C++11 support for char16_t and char32_t works correctly.""" self.build() |