libtest: Fixed call to python in run-make

This commit is contained in:
Gilad Naaman 2018-01-27 11:50:01 +02:00
parent 100ead353a
commit 8b7f1d0cec

View File

@ -8,7 +8,7 @@ all:
$(RUSTC) --test f.rs
$(call RUN,f) -Z unstable-options --test-threads=1 --format=json > $(OUTPUT_FILE) || true
cat $(OUTPUT_FILE) | $(PYTHON) validate_json.py
cat $(OUTPUT_FILE) | "$(PYTHON)" validate_json.py
# Compare to output file
diff output.json $(OUTPUT_FILE)