[Lldb-commits] [lldb] r120505 - /lldb/trunk/test/macosx/universal/TestUniversal.py

Johnny Chen johnny.chen at apple.com
Tue Nov 30 16:03:17 PST 2010


Author: johnny
Date: Tue Nov 30 18:03:17 2010
New Revision: 120505

URL: http://llvm.org/viewvc/llvm-project?rev=120505&view=rev
Log:
Add @expectedFailure decorator for a known bug:

    rdar://problem/8689814 test failure: test/macosx/universal (the i386 slice does not break?)

Modified:
    lldb/trunk/test/macosx/universal/TestUniversal.py

Modified: lldb/trunk/test/macosx/universal/TestUniversal.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/macosx/universal/TestUniversal.py?rev=120505&r1=120504&r2=120505&view=diff
==============================================================================
--- lldb/trunk/test/macosx/universal/TestUniversal.py (original)
+++ lldb/trunk/test/macosx/universal/TestUniversal.py Tue Nov 30 18:03:17 2010
@@ -15,6 +15,8 @@
         # Find the line number to break inside main().
         self.line = line_number('main.c', '// Set break point at this line.')
 
+    @unittest2.expectedFailure
+    # rdar://problem/8689814 test failure: test/macosx/universal (the i386 slice does not break?)
     @unittest2.skipUnless(sys.platform.startswith("darwin") and os.uname()[4]=='i386',
                           "requires Darwin & i386")
     def test_process_launch_for_universal(self):





More information about the lldb-commits mailing list