diff options
author | Yoichi Hirai <i@yoichihirai.com> | 2018-06-01 13:33:34 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-01 13:33:34 +0800 |
commit | 073035c6ef89ae878c528e78d3b5ce59d1b71df7 (patch) | |
tree | 4a49f44a60eb9ffb9e692353b3c4f1d1bcd63a82 | |
parent | 7c228f70fc055ee48489078331328a18c5455586 (diff) | |
parent | 22f1a714b768b2dbb7ffe9b63176bc66d19016f4 (diff) | |
download | dexon-tests-073035c6ef89ae878c528e78d3b5ce59d1b71df7.tar dexon-tests-073035c6ef89ae878c528e78d3b5ce59d1b71df7.tar.gz dexon-tests-073035c6ef89ae878c528e78d3b5ce59d1b71df7.tar.bz2 dexon-tests-073035c6ef89ae878c528e78d3b5ce59d1b71df7.tar.lz dexon-tests-073035c6ef89ae878c528e78d3b5ce59d1b71df7.tar.xz dexon-tests-073035c6ef89ae878c528e78d3b5ce59d1b71df7.tar.zst dexon-tests-073035c6ef89ae878c528e78d3b5ce59d1b71df7.zip |
Merge pull request #462 from ehildenb/hex-encoding-and-invalid-json
Hex encoding and invalid json
-rw-r--r-- | Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..032d081b6 --- /dev/null +++ b/Makefile @@ -0,0 +1,19 @@ +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 + +# Actual filling command + +%.fill: + testeth -t $* -- --filltests --verbosity 2 |