@@ -6,19 +6,18 @@ tx_tests:=$(wildcard TransactionTests/*)
6
6
gs_tests: =$(filter-out % stEWASMTests, $(wildcard GeneralStateTests/* ) )
7
7
bc_tests: =$(wildcard BlockchainTests/* )
8
8
vm_tests: =$(wildcard VMTests/* )
9
- all_tests: =$(gs_tests ) $(bc_tests ) $(vm_tests )
10
9
11
10
tx_fillers: =$(wildcard src/TransactionTestsFiller/* )
12
11
gs_fillers: =$(wildcard src/GeneralStateTestsFiller/* )
13
12
bc_fillers: =$(wildcard src/BlockchainTestsFiller/* )
14
13
vm_fillers: =$(filter-out % .sol % .md, $(wildcard src/VMTestsFiller/* ) )
15
- all_fillers : =$(gs_fillers ) $( bc_fillers ) $( vm_fillers )
14
+ gen_fillers : =$(wildcard src/GenesisTestsFiller/ * )
16
15
17
16
all_schemas: =$(wildcard JSONSchema/* .json)
18
17
19
18
# Testset sanitation
20
19
21
- sani : sani-schema sani-vm sani-gs sani-tx sani-bc
20
+ sani : sani-schema sani-vm sani-gs sani-tx sani-bc sani-gen
22
21
23
22
sani-schema : $(all_schemas:=.format )
24
23
@@ -36,6 +35,11 @@ sani-tx: $(tx_tests:=.filled)
36
35
# TODO: enable $(bc_tests:=.format) $(bc_fillers:=.format) $(bc_tests:=.filled)
37
36
sani-bc : $(bc_tests:=.valid ) $(bc_fillers:=.valid )
38
37
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 )
42
+
39
43
% .format :
40
44
python3 test.py format ./$*
41
45
git diff --quiet --exit-code & > /dev/null
0 commit comments