diff options
author | Adrian Prantl <aprantl@apple.com> | 2018-01-30 23:15:49 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2018-01-30 23:15:49 +0000 |
commit | dbdda6a1e72e49f74fa1f2faca7364d5d1e7980b (patch) | |
tree | 03b79cd6d5a92d2e2eb8fa737845defe0021b05d /lldb/packages/Python/lldbsuite/test/macosx/add-dsym/TestAddDsymMidExecutionCommand.py | |
parent | e039d0ee12397dbaaa5ce3e5564030100bdbab25 (diff) | |
download | bcm5719-llvm-dbdda6a1e72e49f74fa1f2faca7364d5d1e7980b.tar.gz bcm5719-llvm-dbdda6a1e72e49f74fa1f2faca7364d5d1e7980b.zip |
Enforce that NO_DEBUG_INFO_TESTCASEs build using buildDefault().
This is a prerequisite for building each test variant in its own subdirectory.
llvm-svn: 323830
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/macosx/add-dsym/TestAddDsymMidExecutionCommand.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/macosx/add-dsym/TestAddDsymMidExecutionCommand.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/macosx/add-dsym/TestAddDsymMidExecutionCommand.py b/lldb/packages/Python/lldbsuite/test/macosx/add-dsym/TestAddDsymMidExecutionCommand.py index ff22287e537..7e96d90fa1a 100644 --- a/lldb/packages/Python/lldbsuite/test/macosx/add-dsym/TestAddDsymMidExecutionCommand.py +++ b/lldb/packages/Python/lldbsuite/test/macosx/add-dsym/TestAddDsymMidExecutionCommand.py @@ -25,7 +25,7 @@ class AddDsymMidExecutionCommandCase(TestBase): @no_debug_info_test # Prevent the genaration of the dwarf version of this test def test_add_dsym_mid_execution(self): """Test that add-dsym mid-execution loads the symbols at the right place for a slid binary.""" - self.buildDsym(clean=True) + self.buildDefault(clean=True, dictionary={'MAKE_DSYM':'YES'}) exe = self.getBuildArtifact("a.out") self.target = self.dbg.CreateTarget(exe) |