aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Astigeevich <evgeny.astigeevich@linaro.org>2019-09-10 11:56:04 +0100
committerEvgeny Astigeevich <evgeny.astigeevich@linaro.org>2019-09-10 11:56:04 +0100
commit219117a6d17218745aad8d72ff71ffcd47503a34 (patch)
tree1393670e2a3704d6efe1658cca3227a211c7bf0b
parent327096fe5623d9ff03a793c6fce6d206ccd3f16f (diff)
downloadart-testing-219117a6d17218745aad8d72ff71ffcd47503a34.tar.gz
Restore gathering compilation statistics
Test: benchmarks_run_target.sh --cpu big --iterations 1 Change-Id: Ib2390c7a5ba1055096b38bafc18ee4bf64047e2d
-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)