aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2010-09-03 23:52:15 +0000
committerJohnny Chen <johnny.chen@apple.com>2010-09-03 23:52:15 +0000
commit070ebd93d2765e5f88e9739edb673a1fee5cbe9c (patch)
tree7b16c29ebf6c48b0200abb2ad2a6466a27b78e3b
parent18ca8bf8505433104a86545fedbf37e603998188 (diff)
downloadllvm-070ebd93d2765e5f88e9739edb673a1fee5cbe9c.zip
llvm-070ebd93d2765e5f88e9739edb673a1fee5cbe9c.tar.gz
llvm-070ebd93d2765e5f88e9739edb673a1fee5cbe9c.tar.bz2
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.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/test/load_unload/TestLoadUnload.py b/lldb/test/load_unload/TestLoadUnload.py
index 6fa8f98..5e2928b 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)