aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Astigeevich <evgeny.astigeevich@linaro.org>2019-10-11 11:57:09 +0000
committerLinaro Android Code Review <android-review@review.linaro.org>2019-10-11 11:57:09 +0000
commitf66fe09bcc3bbaa52393f08c824999606e25f3d3 (patch)
tree6b93fc51b01b806b27be42b2616fb548e3f2cdc1
parentbf075fb43e23e2e436e4689800ebb120997a4c0b (diff)
parent219117a6d17218745aad8d72ff71ffcd47503a34 (diff)
downloadart-testing-f66fe09bcc3bbaa52393f08c824999606e25f3d3.tar.gz
Merge "Restore gathering compilation statistics"
-rwxr-xr-xrun.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/run.py b/run.py
index 072bde4..8738b62 100755
--- a/run.py
+++ b/run.py
@@ -51,11 +51,9 @@ if __name__ == "__main__":
result = OrderedDict()
result[utils.benchmarks_label] = GetAndPrintBenchmarkResults(args)
- # TODO: it is disabled due to migration to a new approach to run
- # benchmarks via chroot.
- #if args.target:
- # result[utils.compilation_statistics_label] = \
- # GetAndPrintCompilationStatisticsResults(args)
+ if args.target:
+ result[utils.compilation_statistics_label] = \
+ GetAndPrintCompilationStatisticsResults(args)
utils.OutputObject(result, 'pkl', args.output_pkl)
utils.OutputObject(result, 'json', args.output_json)