Skip to content

Commit 4e24d41

Browse files
author
Everett Hildenbrandt
committed
Makefile: enable failing genesis test checkers
1 parent ed71073 commit 4e24d41

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ tx_tests:=$(wildcard TransactionTests/*)
66
gs_tests:=$(filter-out %stEWASMTests, $(wildcard GeneralStateTests/*))
77
bc_tests:=$(wildcard BlockchainTests/*)
88
vm_tests:=$(wildcard VMTests/*)
9+
gen_tests:=$(wildcard GenesisTests/*)
910

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

38-
# TODO: enable $(gen_tests:=.format) $(gen_tests:=.valid) $(gen_tests:=.filled)
39-
sani-gen: $(gen_fillers:=.format) \
40-
$(gen_fillers:=.valid) \
41-
$(gen_fillers:=.filled)
39+
# TODO: enable $(gen_tests:=.filled)
40+
sani-gen: $(gen_tests:=.format) $(gen_fillers:=.format) \
41+
$(gen_tests:=.valid) $(gen_fillers:=.valid)
4242

4343
%.format:
4444
python3 test.py format ./$*

0 commit comments

Comments
 (0)