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