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).


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@111992 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/macosx/universal/TestUniversal.py b/test/macosx/universal/TestUniversal.py
index 8353d93..b498285 100644
--- a/test/macosx/universal/TestUniversal.py
+++ b/test/macosx/universal/TestUniversal.py
@@ -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")