aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEverett Hildenbrandt <hildenb2@illinois.edu>2018-06-06 23:25:46 +0800
committerEverett Hildenbrandt <hildenb2@illinois.edu>2018-06-07 01:00:32 +0800
commitad6c60cb42bb218187e6f7f36d3692c92b23577e (patch)
treebcfb9d29c0b56b3ab0f62572c6648d45d96384c7
parent20f1c0ae032440630fcfbb2caf3e9a751cec0ced (diff)
downloaddexon-tests-ad6c60cb42bb218187e6f7f36d3692c92b23577e.tar.gz
dexon-tests-ad6c60cb42bb218187e6f7f36d3692c92b23577e.tar.zst
dexon-tests-ad6c60cb42bb218187e6f7f36d3692c92b23577e.zip
Makefile: enable validation/filled for VMTests
-rw-r--r--Makefile14
1 files changed, 11 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 00b1db851..d90596488 100644
--- a/Makefile
+++ b/Makefile
@@ -17,14 +17,22 @@ all_schemas:=$(wildcard JSONSchema/*.json)
# Testset sanitation
-sani: $(all_schemas:=.format) $(vm_fillers:=.format) $(vm_tests:=.format)
+sani: sani-schema sani-vm
+
+sani-schema: $(all_schemas:=.format)
+
+sani-vm: $(vm_tests:=.format) $(vm_fillers:=.format) \
+ $(vm_tests:=.valid) $(vm_fillers:=.valid) \
+ $(vm_tests:=.filled)
%.format:
python3 test.py format ./$*
git diff --quiet --exit-code &>/dev/null
-%.sani:
- python3 test.py validate ./$*
+%.valid:
+ python3 test.py validate ./$*
+
+%.filled:
python3 test.py checkFilled ./$*
# Test running command