diff options
author | Pavel Labath <labath@google.com> | 2018-01-31 16:23:24 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2018-01-31 16:23:24 +0000 |
commit | f53288d596bd30f00419ff61abeb83486f67d53a (patch) | |
tree | 1913bf154683693f2cb5f62afcf174c64bdddaf8 /lldb/packages/Python/lldbsuite/test/linux | |
parent | 540f4cd10a86637bb4570ff1bb3e12f151137f7b (diff) | |
download | bcm5719-llvm-f53288d596bd30f00419ff61abeb83486f67d53a.tar.gz bcm5719-llvm-f53288d596bd30f00419ff61abeb83486f67d53a.zip |
Fix TestMixedDwarfBinary.py
As of yesterday, tests need to use self.getBuildArtifact() to get the
built executable.
llvm-svn: 323884
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/linux')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/TestMixedDwarfBinary.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/TestMixedDwarfBinary.py b/lldb/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/TestMixedDwarfBinary.py index 0266be62c25..db91c39c398 100644 --- a/lldb/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/TestMixedDwarfBinary.py +++ b/lldb/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/TestMixedDwarfBinary.py @@ -22,7 +22,7 @@ class TestMixedDwarfBinary(TestBase): with/whithout -gsplit-dwarf correspondingly.""" self.build() - exe = os.path.join(os.getcwd(), "a.out") + exe = self.getBuildArtifact("a.out") self.target = self.dbg.CreateTarget(exe) self.assertTrue(self.target, VALID_TARGET) |