diff options
author | Pavel Labath <labath@google.com> | 2016-02-19 10:36:38 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2016-02-19 10:36:38 +0000 |
commit | 1274474c64bb3fdb84610a2639cb03b57807d284 (patch) | |
tree | aa372e59dbc0ab2639eec30e22cca73d15b134c6 /lldb/packages/Python/lldbsuite/test/lang/cpp/unicode-literals/TestUnicodeLiterals.py | |
parent | b3b8fd3b00da635e03e3185aa4352a6f5e8d7713 (diff) | |
download | bcm5719-llvm-1274474c64bb3fdb84610a2639cb03b57807d284.tar.gz bcm5719-llvm-1274474c64bb3fdb84610a2639cb03b57807d284.zip |
Enable TestUnicodeLiterals
Test should work everywhere except windows now.
llvm-svn: 261314
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/cpp/unicode-literals/TestUnicodeLiterals.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/cpp/unicode-literals/TestUnicodeLiterals.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/unicode-literals/TestUnicodeLiterals.py b/lldb/packages/Python/lldbsuite/test/lang/cpp/unicode-literals/TestUnicodeLiterals.py index dc327a9ea8a..1ae133f0b07 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/cpp/unicode-literals/TestUnicodeLiterals.py +++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/unicode-literals/TestUnicodeLiterals.py @@ -7,7 +7,6 @@ from __future__ import print_function -import unittest2 import os, time import lldb from lldbsuite.test.decorators import * @@ -31,21 +30,18 @@ class UnicodeLiteralsTestCase(TestBase): mydir = TestBase.compute_mydir(__file__) - @unittest2.expectedFailure("rdar://18684408") @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24489: Name lookup not working correctly on Windows") def test_expr1(self): """Test that the expression parser returns proper Unicode strings.""" self.build() self.rdar12991846(expr=1) - @unittest2.expectedFailure("rdar://18684408") @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24489: Name lookup not working correctly on Windows") def test_expr2(self): """Test that the expression parser returns proper Unicode strings.""" self.build() self.rdar12991846(expr=2) - @unittest2.expectedFailure("rdar://18684408") @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24489: Name lookup not working correctly on Windows") def test_expr3(self): """Test that the expression parser returns proper Unicode strings.""" |