diff options
author | grt <grt@chromium.org> | 2014-09-03 10:33:16 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-09-03 17:41:58 +0000 |
commit | 8a6f83680adcb4bbc43651de92b3e4b260ef97e1 (patch) | |
tree | 3f24706a8d374c31d921a31553ba3435f615dcc9 | |
parent | c0e2d2d0e4e593125b2a1fac2bb379717556f315 (diff) | |
download | chromium_src-8a6f83680adcb4bbc43651de92b3e4b260ef97e1.zip chromium_src-8a6f83680adcb4bbc43651de92b3e4b260ef97e1.tar.gz chromium_src-8a6f83680adcb4bbc43651de92b3e4b260ef97e1.tar.bz2 |
Fix interpretation of tests specified on the command line.
The recipe magic expands the test failure trie using '/' as the
separator in contrast to '.', which is the separator in the test case's
id.
BUG=264859
R=robertshield@chromium.org
Review URL: https://codereview.chromium.org/534303002
Cr-Commit-Position: refs/heads/master@{#293163}
-rw-r--r-- | chrome/test/mini_installer/test_installer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/test/mini_installer/test_installer.py b/chrome/test/mini_installer/test_installer.py index 48245ee..007fe95 100644 --- a/chrome/test/mini_installer/test_installer.py +++ b/chrome/test/mini_installer/test_installer.py @@ -305,7 +305,7 @@ def main(): RunCleanCommand(args.force_clean, variable_expander) for test in config.tests: # If tests were specified via |tests|, their names are formatted like so: - test_name = '%s.%s.%s' % (InstallerTest.__module__, + test_name = '%s/%s/%s' % (InstallerTest.__module__, InstallerTest.__name__, test['name']) if not args.test or test_name in args.test: |