2018-04-06 14:52:10 +00:00
|
|
|
# Nimbus
|
2019-01-06 19:19:48 +00:00
|
|
|
# Copyright (c) 2018-2019 Status Research & Development GmbH
|
2018-04-06 14:52:10 +00:00
|
|
|
# Licensed under either of
|
|
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
|
|
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
2018-08-16 20:07:45 +00:00
|
|
|
import ./test_code_stream,
|
|
|
|
./test_gas_meter,
|
|
|
|
./test_memory,
|
|
|
|
./test_stack,
|
|
|
|
./test_genesis,
|
2018-09-19 17:57:45 +00:00
|
|
|
./test_vm_json,
|
2018-12-04 15:32:11 +00:00
|
|
|
./test_precompiles,
|
2018-12-12 15:18:46 +00:00
|
|
|
./test_generalstate_json,
|
2018-12-25 12:10:04 +00:00
|
|
|
./test_tracer_json,
|
2019-01-06 19:19:48 +00:00
|
|
|
./test_persistblock_json,
|
2019-02-20 13:00:54 +00:00
|
|
|
#./test_rpc, # it crash if we combine it here
|
2019-01-30 12:29:04 +00:00
|
|
|
./test_op_arith,
|
|
|
|
./test_op_bit,
|
|
|
|
./test_op_env,
|
|
|
|
./test_op_memory,
|
2019-02-01 09:25:10 +00:00
|
|
|
./test_op_misc,
|
2019-08-20 10:11:17 +00:00
|
|
|
./test_op_custom,
|
2019-08-26 14:40:27 +00:00
|
|
|
./test_state_db,
|
2019-08-29 12:57:01 +00:00
|
|
|
./test_difficulty,
|
|
|
|
./test_transaction_json
|
2019-03-17 00:54:30 +00:00
|
|
|
|