Skip to content
Snippets Groups Projects
Commit a07d343a authored by Nicolas Noble's avatar Nicolas Noble
Browse files

Merge pull request #671 from ctiller/interop

Make run_tests.py respect the run= attribute
parents d539f69c 9024f471
No related branches found
No related tags found
No related merge requests found
...@@ -1018,6 +1018,8 @@ test_c: buildtests_c ...@@ -1018,6 +1018,8 @@ test_c: buildtests_c
$(Q) $(BINDIR)/$(CONFIG)/httpcli_test || ( echo test httpcli_test failed ; exit 1 ) $(Q) $(BINDIR)/$(CONFIG)/httpcli_test || ( echo test httpcli_test failed ; exit 1 )
$(E) "[RUN] Testing interop_test" $(E) "[RUN] Testing interop_test"
$(Q) $(BINDIR)/$(CONFIG)/interop_test || ( echo test interop_test failed ; exit 1 ) $(Q) $(BINDIR)/$(CONFIG)/interop_test || ( echo test interop_test failed ; exit 1 )
$(E) "[RUN] Testing json_rewrite_test"
$(Q) $(BINDIR)/$(CONFIG)/json_rewrite_test || ( echo test json_rewrite_test failed ; exit 1 )
$(E) "[RUN] Testing json_test" $(E) "[RUN] Testing json_test"
$(Q) $(BINDIR)/$(CONFIG)/json_test || ( echo test json_test failed ; exit 1 ) $(Q) $(BINDIR)/$(CONFIG)/json_test || ( echo test json_test failed ; exit 1 )
$(E) "[RUN] Testing lame_client_test" $(E) "[RUN] Testing lame_client_test"
...@@ -1282,7 +1282,6 @@ ...@@ -1282,7 +1282,6 @@
{ {
"name": "json_rewrite_test", "name": "json_rewrite_test",
"build": "test", "build": "test",
"run": false,
"language": "c", "language": "c",
"src": [ "src": [
"test/core/json/json_rewrite_test.c" "test/core/json/json_rewrite_test.c"
......
...@@ -4,6 +4,6 @@ import json ...@@ -4,6 +4,6 @@ import json
${json.dumps([{"name": tgt.name, "language": tgt.language} ${json.dumps([{"name": tgt.name, "language": tgt.language}
for tgt in targets for tgt in targets
if tgt.build == "test" and tgt.name[-5:] == "_test"], if tgt.get('run', True) and tgt.build == 'test'],
sort_keys=True, indent=2)} sort_keys=True, indent=2)}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment