blob: 0e0d4df84255b61346f1dcc90e7913a260c921cf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
ETHEREUM_TEST_PATH=$(CURDIR)
export ETHEREUM_TEST_PATH
tx_tests:=$(wildcard TransactionTests/*)
gs_tests:=$(wildcard GeneralStateTests/*)
bc_tests:=$(wildcard BlockchainTests/*)
vm_tests:=$(wildcard VMTests/*)
all_tests:=$(tx_tests) $(gs_tests) $(bc_tests) $(vm_tests)
fill-tx: $(tx_tests:=.fill)
fill-gs: $(gs_tests:=.fill)
fill-bc: $(bc_tests:=.fill)
fill-vm: $(vm_tests:=.fill)
fill-all: fill-tx fill-gs fill-bc fill-vm
test-tx: $(tx_tests:=.test)
test-gs: $(gs_tests:=.test)
test-bc: $(bc_tests:=.test)
test-vm: $(vm_tests:=.test)
test-all: test-tx test-gs test-bc test-vm
# Testing command
%.test:
testeth -t $* -- --verbosity 2
# Actual filling command
%.fill:
testeth -t $* -- --filltests --verbosity 2
|