[Lldb-commits] [lldb] r114872 - /lldb/trunk/test/types/TestBasicTypes.py
Johnny Chen
johnny.chen at apple.com
Mon Sep 27 13:55:52 PDT 2010
Author: johnny
Date: Mon Sep 27 15:55:52 2010
New Revision: 114872
URL: http://llvm.org/viewvc/llvm-project?rev=114872&view=rev
Log:
Added @expectedFailure decorator for the "long long" and "unsigned long long"
test cases.
Modified:
lldb/trunk/test/types/TestBasicTypes.py
Modified: lldb/trunk/test/types/TestBasicTypes.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/types/TestBasicTypes.py?rev=114872&r1=114871&r2=114872&view=diff
==============================================================================
--- lldb/trunk/test/types/TestBasicTypes.py (original)
+++ lldb/trunk/test/types/TestBasicTypes.py Mon Sep 27 15:55:52 2010
@@ -131,6 +131,10 @@
self.setTearDownCleanup(dictionary=d)
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):
"""Test that 'long long'-type variables are displayed correctly."""
d = {'CXX_SOURCES': 'long_long.cpp'}
@@ -138,6 +142,7 @@
self.setTearDownCleanup(dictionary=d)
self.long_long_type()
+ @unittest2.expectedFailure
def test_long_long_type_with_dwarf(self):
"""Test that 'long long'-type variables are displayed correctly."""
d = {'CXX_SOURCES': 'long_long.cpp'}
@@ -145,6 +150,7 @@
self.setTearDownCleanup(dictionary=d)
self.long_long_type()
+ @unittest2.expectedFailure
def test_unsigned_long_long_type_with_dsym(self):
"""Test that 'unsigned long long'-type variables are displayed correctly."""
d = {'CXX_SOURCES': 'unsigned_long_long.cpp'}
@@ -152,6 +158,7 @@
self.setTearDownCleanup(dictionary=d)
self.unsigned_long_long_type()
+ @unittest2.expectedFailure
def test_unsigned_long_long_type_with_dwarf(self):
"""Test that 'unsigned long long'-type variables are displayed correctly."""
d = {'CXX_SOURCES': 'unsigned_long_long.cpp'}
More information about the lldb-commits
mailing list