Added a default build phase at the beginning of test_load_unload() test case.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@113039 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/load_unload/TestLoadUnload.py b/test/load_unload/TestLoadUnload.py
index 6fa8f98..5e2928b 100644
--- a/test/load_unload/TestLoadUnload.py
+++ b/test/load_unload/TestLoadUnload.py
@@ -13,6 +13,10 @@
 
     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)