forked from OSchip/llvm-project
Enable TestUnicodeLiterals
Test should work everywhere except windows now. llvm-svn: 261314
This commit is contained in:
parent
b3b8fd3b00
commit
1274474c64
|
@ -7,7 +7,6 @@ from __future__ import print_function
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
import unittest2
|
|
||||||
import os, time
|
import os, time
|
||||||
import lldb
|
import lldb
|
||||||
from lldbsuite.test.decorators import *
|
from lldbsuite.test.decorators import *
|
||||||
|
@ -31,21 +30,18 @@ class UnicodeLiteralsTestCase(TestBase):
|
||||||
|
|
||||||
mydir = TestBase.compute_mydir(__file__)
|
mydir = TestBase.compute_mydir(__file__)
|
||||||
|
|
||||||
@unittest2.expectedFailure("rdar://18684408")
|
|
||||||
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24489: Name lookup not working correctly on Windows")
|
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24489: Name lookup not working correctly on Windows")
|
||||||
def test_expr1(self):
|
def test_expr1(self):
|
||||||
"""Test that the expression parser returns proper Unicode strings."""
|
"""Test that the expression parser returns proper Unicode strings."""
|
||||||
self.build()
|
self.build()
|
||||||
self.rdar12991846(expr=1)
|
self.rdar12991846(expr=1)
|
||||||
|
|
||||||
@unittest2.expectedFailure("rdar://18684408")
|
|
||||||
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24489: Name lookup not working correctly on Windows")
|
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24489: Name lookup not working correctly on Windows")
|
||||||
def test_expr2(self):
|
def test_expr2(self):
|
||||||
"""Test that the expression parser returns proper Unicode strings."""
|
"""Test that the expression parser returns proper Unicode strings."""
|
||||||
self.build()
|
self.build()
|
||||||
self.rdar12991846(expr=2)
|
self.rdar12991846(expr=2)
|
||||||
|
|
||||||
@unittest2.expectedFailure("rdar://18684408")
|
|
||||||
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24489: Name lookup not working correctly on Windows")
|
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24489: Name lookup not working correctly on Windows")
|
||||||
def test_expr3(self):
|
def test_expr3(self):
|
||||||
"""Test that the expression parser returns proper Unicode strings."""
|
"""Test that the expression parser returns proper Unicode strings."""
|
||||||
|
|
Loading…
Reference in New Issue