aboutsummaryrefslogtreecommitdiff
path: root/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'run.py')
-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)