diff options
Diffstat (limited to 'lldb/test/macosx/universal/TestUniversal.py')
| -rw-r--r-- | lldb/test/macosx/universal/TestUniversal.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lldb/test/macosx/universal/TestUniversal.py b/lldb/test/macosx/universal/TestUniversal.py index 6a93e4aa714..7785f63a11f 100644 --- a/lldb/test/macosx/universal/TestUniversal.py +++ b/lldb/test/macosx/universal/TestUniversal.py @@ -9,9 +9,14 @@ class UniversalTestCase(TestBase): mydir = "macosx/universal" + @unittest2.skipUnless(sys.platform.startswith("darwin") and os.uname()[4]=='i386', + "requires Darwin & i386") def test_process_launch_for_universal(self): """Test process launch of a universal binary.""" + # Invoke the default build rule. + self.buildDefault() + # Note that "testit" is a universal binary. exe = os.path.join(os.getcwd(), "testit") |

