diff options
author | sullivan <sullivan@chromium.org> | 2015-03-11 11:39:29 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-03-11 18:40:13 +0000 |
commit | be01902b3c24600f4b20d53b5fbad802e3aa2740 (patch) | |
tree | b5b8eba4287a0d1adb0466877dba2d9873064578 /testing/scripts | |
parent | e871dbc31b3ad435572fc6c5767059246e65550f (diff) | |
download | chromium_src-be01902b3c24600f4b20d53b5fbad802e3aa2740.zip chromium_src-be01902b3c24600f4b20d53b5fbad802e3aa2740.tar.gz chromium_src-be01902b3c24600f4b20d53b5fbad802e3aa2740.tar.bz2 |
Add test-type argument to runtest.py
This argument is used to identify the correct test suite when uploading perf dashboard data from gTests.
BUG=466110
Review URL: https://codereview.chromium.org/1001533003
Cr-Commit-Position: refs/heads/master@{#320115}
Diffstat (limited to 'testing/scripts')
-rwxr-xr-x | testing/scripts/gtest_perf_test.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testing/scripts/gtest_perf_test.py b/testing/scripts/gtest_perf_test.py index 5518cb1..6243a79 100755 --- a/testing/scripts/gtest_perf_test.py +++ b/testing/scripts/gtest_perf_test.py @@ -31,6 +31,7 @@ def main_run(args): '--builder-name', args.properties.get('buildername'), '--build-number', str(args.properties.get('buildnumber')), '--log-processor-output-file', tempfile_path, + '--test-type', test_suite, ] if 'android' == args.properties.get('target_platform'): @@ -43,7 +44,7 @@ def main_run(args): '--verbose', ]) else: - gtest_args.extend(['--xvfb', '--test-type', test_suite]) + gtest_args.extend(['--xvfb']) gtest_args.extend(script_args) rc = common.run_runtest(args, gtest_args + filter_tests) |