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

Johnny Chen johnny.chen at apple.com
Tue Aug 24 16:14:47 PDT 2010


Author: johnny
Date: Tue Aug 24 18:14:47 2010
New Revision: 111992

URL: http://llvm.org/viewvc/llvm-project?rev=111992&view=rev
Log:
Removed the @unitest2.expectedFailure decorator.  The i386 process launch works
correctly after all.  It was my own configuration error (I was building x86_64
only).

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=111992&r1=111991&r2=111992&view=diff
==============================================================================
--- lldb/trunk/test/macosx/universal/TestUniversal.py (original)
+++ lldb/trunk/test/macosx/universal/TestUniversal.py Tue Aug 24 18:14:47 2010
@@ -9,7 +9,6 @@
 
     mydir = "macosx/universal"
 
-    @unittest2.expectedFailure
     def test_process_launch_for_universal(self):
         """Test process launch of a universal binary."""
 
@@ -38,9 +37,7 @@
         self.expect("breakpoint set -f main.c -l 5", BREAKPOINT_CREATED,
             startstr = "Breakpoint created: 1: file ='main.c', line = 5, locations = 1")
 
-        # We should be able to launch the i386 executable.
-        # Process launch for i386 architecture currently fails.
-        # rdar://problem/8349784
+        # We should be able to launch the i386 executable as well.
         self.runCmd("run", RUN_STOPPED)
         self.runCmd("continue")
 





More information about the lldb-commits mailing list