aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorEverett Hildenbrandt <hildenb2@illinois.edu>2018-06-07 00:55:38 +0800
committerEverett Hildenbrandt <hildenb2@illinois.edu>2018-06-07 01:00:39 +0800
commitcf699c3452af739377533d75161be427d7705ce8 (patch)
tree3dd0c91929196d6bda859f8333a47dc8c7ff4597 /Makefile
parent1a3c786a245a72333284ee525b405989008a9f32 (diff)
downloaddexon-tests-cf699c3452af739377533d75161be427d7705ce8.tar.gz
dexon-tests-cf699c3452af739377533d75161be427d7705ce8.tar.zst
dexon-tests-cf699c3452af739377533d75161be427d7705ce8.zip
Makefile: enable sani-tx
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 91143bd68..187dc0800 100644
--- a/Makefile
+++ b/Makefile
@@ -18,7 +18,7 @@ all_schemas:=$(wildcard JSONSchema/*.json)
# Testset sanitation
-sani: sani-schema sani-vm sani-gs
+sani: sani-schema sani-vm sani-gs sani-tx
sani-schema: $(all_schemas:=.format)
@@ -30,6 +30,9 @@ sani-vm: $(vm_tests:=.format) $(vm_fillers:=.format) \
sani-gs: $(gs_tests:=.valid) \
$(gs_tests:=.filled)
+# TODO: enable $(tx_tests:=.format) $(tx_fillers:=.format) $(tx_tests:=.valid) $(tx_fillers:=.valid)
+sani-tx: $(tx_tests:=.filled)
+
%.format:
python3 test.py format ./$*
git diff --quiet --exit-code &>/dev/null