forked from OSchip/llvm-project
Added @expectedFailure decorator for the "long long" and "unsigned long long"
test cases. llvm-svn: 114872
This commit is contained in:
parent
e1030cd883
commit
ca54e280d5
|
@ -131,6 +131,10 @@ class BasicTypesTestCase(TestBase):
|
||||||
self.setTearDownCleanup(dictionary=d)
|
self.setTearDownCleanup(dictionary=d)
|
||||||
self.unsigned_long_type()
|
self.unsigned_long_type()
|
||||||
|
|
||||||
|
# rdar://problem/8482903
|
||||||
|
# test suite failure for types dir -- "long long" and "unsigned long long"
|
||||||
|
|
||||||
|
@unittest2.expectedFailure
|
||||||
def test_long_long_type_with_dsym(self):
|
def test_long_long_type_with_dsym(self):
|
||||||
"""Test that 'long long'-type variables are displayed correctly."""
|
"""Test that 'long long'-type variables are displayed correctly."""
|
||||||
d = {'CXX_SOURCES': 'long_long.cpp'}
|
d = {'CXX_SOURCES': 'long_long.cpp'}
|
||||||
|
@ -138,6 +142,7 @@ class BasicTypesTestCase(TestBase):
|
||||||
self.setTearDownCleanup(dictionary=d)
|
self.setTearDownCleanup(dictionary=d)
|
||||||
self.long_long_type()
|
self.long_long_type()
|
||||||
|
|
||||||
|
@unittest2.expectedFailure
|
||||||
def test_long_long_type_with_dwarf(self):
|
def test_long_long_type_with_dwarf(self):
|
||||||
"""Test that 'long long'-type variables are displayed correctly."""
|
"""Test that 'long long'-type variables are displayed correctly."""
|
||||||
d = {'CXX_SOURCES': 'long_long.cpp'}
|
d = {'CXX_SOURCES': 'long_long.cpp'}
|
||||||
|
@ -145,6 +150,7 @@ class BasicTypesTestCase(TestBase):
|
||||||
self.setTearDownCleanup(dictionary=d)
|
self.setTearDownCleanup(dictionary=d)
|
||||||
self.long_long_type()
|
self.long_long_type()
|
||||||
|
|
||||||
|
@unittest2.expectedFailure
|
||||||
def test_unsigned_long_long_type_with_dsym(self):
|
def test_unsigned_long_long_type_with_dsym(self):
|
||||||
"""Test that 'unsigned long long'-type variables are displayed correctly."""
|
"""Test that 'unsigned long long'-type variables are displayed correctly."""
|
||||||
d = {'CXX_SOURCES': 'unsigned_long_long.cpp'}
|
d = {'CXX_SOURCES': 'unsigned_long_long.cpp'}
|
||||||
|
@ -152,6 +158,7 @@ class BasicTypesTestCase(TestBase):
|
||||||
self.setTearDownCleanup(dictionary=d)
|
self.setTearDownCleanup(dictionary=d)
|
||||||
self.unsigned_long_long_type()
|
self.unsigned_long_long_type()
|
||||||
|
|
||||||
|
@unittest2.expectedFailure
|
||||||
def test_unsigned_long_long_type_with_dwarf(self):
|
def test_unsigned_long_long_type_with_dwarf(self):
|
||||||
"""Test that 'unsigned long long'-type variables are displayed correctly."""
|
"""Test that 'unsigned long long'-type variables are displayed correctly."""
|
||||||
d = {'CXX_SOURCES': 'unsigned_long_long.cpp'}
|
d = {'CXX_SOURCES': 'unsigned_long_long.cpp'}
|
||||||
|
|
Loading…
Reference in New Issue