diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2010-08-24 23:14:47 +0000 |
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2010-08-24 23:14:47 +0000 |
| commit | 536b7d2d266dc9add206c794aa3b16688777d7cb (patch) | |
| tree | 9b3b633a2130f62ffa537c60de05e3bad4819135 | |
| parent | cc7f2158721b914d0e748e192e5fd608b721bf64 (diff) | |
| download | bcm5719-llvm-536b7d2d266dc9add206c794aa3b16688777d7cb.tar.gz bcm5719-llvm-536b7d2d266dc9add206c794aa3b16688777d7cb.zip | |
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).
llvm-svn: 111992
| -rw-r--r-- | lldb/test/macosx/universal/TestUniversal.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lldb/test/macosx/universal/TestUniversal.py b/lldb/test/macosx/universal/TestUniversal.py index 8353d93cc35..b4982851dc7 100644 --- a/lldb/test/macosx/universal/TestUniversal.py +++ b/lldb/test/macosx/universal/TestUniversal.py @@ -9,7 +9,6 @@ class TestUniversal(TestBase): mydir = "macosx/universal" - @unittest2.expectedFailure def test_process_launch_for_universal(self): """Test process launch of a universal binary.""" @@ -38,9 +37,7 @@ class TestUniversal(TestBase): 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") |

