diff options
author | Everett Hildenbrandt <hildenb2@illinois.edu> | 2018-06-07 00:55:38 +0800 |
---|---|---|
committer | Everett Hildenbrandt <hildenb2@illinois.edu> | 2018-06-07 01:00:39 +0800 |
commit | cf699c3452af739377533d75161be427d7705ce8 (patch) | |
tree | 3dd0c91929196d6bda859f8333a47dc8c7ff4597 /Makefile | |
parent | 1a3c786a245a72333284ee525b405989008a9f32 (diff) | |
download | dexon-tests-cf699c3452af739377533d75161be427d7705ce8.tar dexon-tests-cf699c3452af739377533d75161be427d7705ce8.tar.gz dexon-tests-cf699c3452af739377533d75161be427d7705ce8.tar.bz2 dexon-tests-cf699c3452af739377533d75161be427d7705ce8.tar.lz dexon-tests-cf699c3452af739377533d75161be427d7705ce8.tar.xz dexon-tests-cf699c3452af739377533d75161be427d7705ce8.tar.zst dexon-tests-cf699c3452af739377533d75161be427d7705ce8.zip |
Makefile: enable sani-tx
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |