From 7c0d24a648ea255d5bcc7e236c6ade898966bb62 Mon Sep 17 00:00:00 2001 From: jangko Date: Wed, 20 May 2020 11:49:33 +0700 Subject: [PATCH] add instruction comment for test_fuzz --- stateless/test_fuzz.nim | 4 ++++ tests/all_tests.nim | 3 +-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/stateless/test_fuzz.nim b/stateless/test_fuzz.nim index 33e2e08aa..6ed5176fb 100644 --- a/stateless/test_fuzz.nim +++ b/stateless/test_fuzz.nim @@ -2,6 +2,10 @@ import testutils/fuzzing, eth/trie/db, ./tree_from_witness, ./witness_types +# please read instruction in status-im/nim-testutils/fuzzing/readme.md +# or status-im/nim-testutils/fuzzing/fuzzing_on_windows.md +# if you want to run fuzz test + test: var db = newMemoryDB() try: diff --git a/tests/all_tests.nim b/tests/all_tests.nim index f1ed7533b..6b8a38a4d 100644 --- a/tests/all_tests.nim +++ b/tests/all_tests.nim @@ -97,7 +97,7 @@ cliBuilder: ./test_generalstate_json, ./test_tracer_json, ./test_persistblock_json, - ./test_rpc, # it crash if we combine it here + #./test_rpc, # it crash if we combine it here ./test_op_arith, ./test_op_bit, ./test_op_env, @@ -111,4 +111,3 @@ cliBuilder: ../stateless/test_witness_keys, ../stateless/test_block_witness, ../stateless/test_witness_json -