Skip to content

Commit

Permalink
Makefile: enable failing genesis test checkers
Browse files Browse the repository at this point in the history
  • Loading branch information
Everett Hildenbrandt committed Jun 17, 2018
1 parent ed71073 commit 4e24d41
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ tx_tests:=$(wildcard TransactionTests/*)
gs_tests:=$(filter-out %stEWASMTests, $(wildcard GeneralStateTests/*))
bc_tests:=$(wildcard BlockchainTests/*)
vm_tests:=$(wildcard VMTests/*)
gen_tests:=$(wildcard GenesisTests/*)

tx_fillers:=$(wildcard src/TransactionTestsFiller/*)
gs_fillers:=$(wildcard src/GeneralStateTestsFiller/*)
Expand Down Expand Up @@ -35,10 +36,9 @@ sani-tx: $(tx_tests:=.filled)
# TODO: enable $(bc_tests:=.format) $(bc_fillers:=.format) $(bc_tests:=.filled)
sani-bc: $(bc_tests:=.valid) $(bc_fillers:=.valid)

# TODO: enable $(gen_tests:=.format) $(gen_tests:=.valid) $(gen_tests:=.filled)
sani-gen: $(gen_fillers:=.format) \
$(gen_fillers:=.valid) \
$(gen_fillers:=.filled)
# TODO: enable $(gen_tests:=.filled)
sani-gen: $(gen_tests:=.format) $(gen_fillers:=.format) \
$(gen_tests:=.valid) $(gen_fillers:=.valid)

%.format:
python3 test.py format ./$*
Expand Down

0 comments on commit 4e24d41

Please sign in to comment.