diff options
author | Johnny Chen <johnny.chen@apple.com> | 2010-09-03 23:52:15 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2010-09-03 23:52:15 +0000 |
commit | 070ebd93d2765e5f88e9739edb673a1fee5cbe9c (patch) | |
tree | 7b16c29ebf6c48b0200abb2ad2a6466a27b78e3b | |
parent | 18ca8bf8505433104a86545fedbf37e603998188 (diff) | |
download | bcm5719-llvm-070ebd93d2765e5f88e9739edb673a1fee5cbe9c.tar.gz bcm5719-llvm-070ebd93d2765e5f88e9739edb673a1fee5cbe9c.zip |
Added a default build phase at the beginning of test_load_unload() test case.
llvm-svn: 113039
-rw-r--r-- | lldb/test/load_unload/TestLoadUnload.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/test/load_unload/TestLoadUnload.py b/lldb/test/load_unload/TestLoadUnload.py index 6fa8f98fff3..5e2928b6a83 100644 --- a/lldb/test/load_unload/TestLoadUnload.py +++ b/lldb/test/load_unload/TestLoadUnload.py @@ -13,6 +13,10 @@ class LoadUnloadTestCase(TestBase): def test_load_unload(self): """Test breakpoint by name works correctly with dlopen'ing.""" + + # Invoke the default build rule. + self.buildDefault() + exe = os.path.join(os.getcwd(), "a.out") self.runCmd("file " + exe, CURRENT_EXECUTABLE_SET) |