diff options
author | Pavel Labath <labath@google.com> | 2017-11-01 22:01:03 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2017-11-01 22:01:03 +0000 |
commit | cf82cc3d54108c4d67a954a6cf4905c262a65197 (patch) | |
tree | 6012eba36becba904b378da49970463e1ecab241 /lldb/packages/Python/lldbsuite/test | |
parent | 813c5f21ddb70b44ad21a5b04c24debb3c01e24e (diff) | |
download | bcm5719-llvm-cf82cc3d54108c4d67a954a6cf4905c262a65197.tar.gz bcm5719-llvm-cf82cc3d54108c4d67a954a6cf4905c262a65197.zip |
dotest: consistently call finalize_build_dictionary in debug info variants
dwarf&dwo versions were doing it, but gmodules and dsym weren't. All
this function does right now is pass OS=Android to make when targeting
android. This enables us to run dotest without manually passing --env
OS=Android.
llvm-svn: 317130
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lldbtest.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lldbtest.py b/lldb/packages/Python/lldbsuite/test/lldbtest.py index c72b8277052..9f28cc0d39c 100644 --- a/lldb/packages/Python/lldbsuite/test/lldbtest.py +++ b/lldb/packages/Python/lldbsuite/test/lldbtest.py @@ -1510,6 +1510,7 @@ class Base(unittest2.TestCase): clean=True): """Platform specific way to build binaries with dsym info.""" module = builder_module() + dictionary = lldbplatformutil.finalize_build_dictionary(dictionary) if not module.buildDsym( self, architecture, @@ -1560,6 +1561,7 @@ class Base(unittest2.TestCase): clean=True): """Platform specific way to build binaries with gmodules info.""" module = builder_module() + dictionary = lldbplatformutil.finalize_build_dictionary(dictionary) if not module.buildGModules( self, architecture, |