diff options
| author | Pavel Labath <labath@google.com> | 2018-02-05 11:30:46 +0000 |
|---|---|---|
| committer | Pavel Labath <labath@google.com> | 2018-02-05 11:30:46 +0000 |
| commit | 55790fb7f8cbd939ed89693db6b80491bcea2be8 (patch) | |
| tree | 4d57ac36afb02dd114ac1004712de03577eb5968 /lldb/packages/Python/lldbsuite/test/functionalities | |
| parent | 14c979da329daf35ebc99a0bd11581b0b081d813 (diff) | |
| download | bcm5719-llvm-55790fb7f8cbd939ed89693db6b80491bcea2be8.tar.gz bcm5719-llvm-55790fb7f8cbd939ed89693db6b80491bcea2be8.zip | |
[dotest] make debug info variant accessible in setUp()
Summary:
This changes the way we store the debug info variant to make it
available earlier in the test bringup: instead of it being set by the
test wrapper method, it is set as a *property* of the wrapper method.
This way, we can inspect it as soon as self.testMethodName is
initialized. The retrieval is implemented by a new function
TestBase.getDebugInfo(), and all that's necessary to make it work is to
change self.debug_info into self.getDebugInfo().
While searching for debug_info occurences i noticed that TestLogging is
being replicated for no good reason, so I removed the replication there.
Reviewers: aprantl, jingham
Subscribers: eraman, JDevlieghere, lldb-commits
Differential Revision: https://reviews.llvm.org/D42836
llvm-svn: 324226
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities')
| -rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/exec/TestExec.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/exec/TestExec.py b/lldb/packages/Python/lldbsuite/test/functionalities/exec/TestExec.py index 6cf486fe1f0..ece566a64f3 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/exec/TestExec.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/exec/TestExec.py @@ -52,7 +52,7 @@ class ExecTestCase(TestBase): execute_command( "'%s' -g -O0 -arch i386 -arch x86_64 '%s' -o '%s'" % (os.environ["CC"], o_file, exe)) - if self.debug_info != "dsym": + if self.getDebugInfo() != "dsym": dsym_path = self.getBuildArtifact("a.out.dSYM") execute_command("rm -rf '%s'" % (dsym_path)) else: |

