aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/tools/run_tests
diff options
context:
space:
mode:
authorGravatar Craig Tiller <craig.tiller@gmail.com>2015-01-18 10:49:16 -0800
committerGravatar Craig Tiller <craig.tiller@gmail.com>2015-01-18 10:49:16 -0800
commitf24e7241aa0bbace23c48e5717fa07e19f37ed36 (patch)
treee2cfac8f8fcc102afc477786a2241004a0447de4 /templates/tools/run_tests
parente9c959d78e3998855d0a16e5af9b10970299bb46 (diff)
Pretty print tests.json
Diffstat (limited to 'templates/tools/run_tests')
-rw-r--r--templates/tools/run_tests/tests.json.template3
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/tools/run_tests/tests.json.template b/templates/tools/run_tests/tests.json.template
index 3a9e103281..4978480843 100644
--- a/templates/tools/run_tests/tests.json.template
+++ b/templates/tools/run_tests/tests.json.template
@@ -4,5 +4,6 @@ import json
${json.dumps([{"name": tgt.name, "language": tgt.language}
for tgt in targets
- if tgt.build == "test" and tgt.name[-5:] == "_test"])}
+ if tgt.build == "test" and tgt.name[-5:] == "_test"],
+ sort_keys=True, indent=4)}