Merge "Substitue "/" with "-" in the MODULES-IN phony goal names."

This commit is contained in:
Ying Wang
2015-09-24 23:53:44 +00:00
committed by Gerrit Code Review

View File

@@ -289,7 +289,7 @@ class TestRunner(object):
d = d[2:]
if d.endswith("/"):
d = d[:-1]
mmma_goals.append("MODULES-IN/" + d)
mmma_goals.append("MODULES-IN-" + d.replace("/","-"))
alt_cmd = 'make -j%s -C "%s" -f build/core/main.mk %s %s' % (
self._options.make_jobs, self._root_path, extra_args_string, " ".join(mmma_goals))