diff options
author | Craig Tiller <ctiller@google.com> | 2017-02-08 15:57:03 -0800 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-02-08 15:57:03 -0800 |
commit | fc4f72a977e65fa3b061b87952350f9b00ec6932 (patch) | |
tree | 92d7263653a5daad7aa4224d11391e81844f5e4c | |
parent | aa64ddf10962b811e0767b71775d8983ec89cab5 (diff) |
Fix uploader
-rwxr-xr-x | tools/run_tests/run_microbenchmark.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run_tests/run_microbenchmark.py b/tools/run_tests/run_microbenchmark.py index 2084599e35..edc9e6a800 100755 --- a/tools/run_tests/run_microbenchmark.py +++ b/tools/run_tests/run_microbenchmark.py @@ -152,7 +152,7 @@ def collect_summary(bm_name, args): '--benchmark_out_format=json'])) if args.bigquery_upload: with open('/tmp/out.csv', 'w') as f: - f.write(subprocess.check_output(['tools/profiling/microbenchmarks/bm2bq.py out.json'])) + f.write(subprocess.check_output(['tools/profiling/microbenchmarks/bm2bq.py', 'out.json'])) subprocess.check_call(['bq', 'load', 'microbenchmarks.microbenchmarks', 'out.csv']) collectors = { |