From: Pavel Labath Date: Wed, 1 Nov 2017 22:01:03 +0000 (+0000) Subject: dotest: consistently call finalize_build_dictionary in debug info variants X-Git-Tag: llvmorg-6.0.0-rc1~4386 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cf82cc3d54108c4d67a954a6cf4905c262a65197;p=platform%2Fupstream%2Fllvm.git 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 --- diff --git a/lldb/packages/Python/lldbsuite/test/lldbtest.py b/lldb/packages/Python/lldbsuite/test/lldbtest.py index c72b827..9f28cc0 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,