forked from OSchip/llvm-project
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
This commit is contained in:
parent
813c5f21dd
commit
cf82cc3d54
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue