[test] Fix test group expansion in test runner.

NOTRY=true

Review URL: https://codereview.chromium.org/1588073002

Cr-Commit-Position: refs/heads/master@{#33303}
This commit is contained in:
machenbach 2016-01-14 09:08:43 -08:00 committed by Commit bot
parent f501373dc7
commit b5d915afd8

View File

@ -593,7 +593,7 @@ def Main():
# suites as otherwise filters would break.
def ExpandTestGroups(name):
if name in TEST_MAP:
return [suite for suite in TEST_MAP[arg]]
return [suite for suite in TEST_MAP[name]]
else:
return [name]
args = reduce(lambda x, y: x + y,