From 9aa63fc9534a82defa9899a5dbd17957323df8e5 Mon Sep 17 00:00:00 2001 From: Everett Hildenbrandt Date: Wed, 6 Jun 2018 10:59:40 -0600 Subject: Makefile: enable sani-bc --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Makefile') 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 -- cgit