2020-07-21 04:28:03 +00:00
|
|
|
# nimbus
|
2024-02-09 04:09:02 +00:00
|
|
|
# Copyright (c) 2018-2024 Status Research & Development GmbH
|
2020-07-21 04:28:03 +00:00
|
|
|
# Licensed and distributed under either of
|
|
|
|
# * MIT license: [LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT
|
|
|
|
# * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
|
|
|
# this module helps CI save time
|
|
|
|
# when try to test buildability of these tools.
|
|
|
|
# They never run in the CI so it is ok to combine them
|
|
|
|
|
2024-08-23 14:39:33 +00:00
|
|
|
{.warning[UnusedImport]: off.}
|
2020-07-21 04:28:03 +00:00
|
|
|
|
|
|
|
import
|
2024-06-18 11:14:02 +00:00
|
|
|
#./tracerTestGen, # -- ditto
|
|
|
|
#./persistBlockTestGen, # -- ditto
|
2023-06-25 01:40:15 +00:00
|
|
|
../hive_integration/nodocker/rpc/rpc_sim,
|
2021-05-20 06:01:57 +00:00
|
|
|
../hive_integration/nodocker/consensus/consensus_sim,
|
2024-09-04 09:54:54 +00:00
|
|
|
#../hive_integration/nodocker/graphql/graphql_sim, # -- does not compile
|
2024-10-06 10:11:44 +00:00
|
|
|
../hive_integration/nodocker/engine/engine_sim,
|
2023-10-04 03:47:18 +00:00
|
|
|
../hive_integration/nodocker/pyspec/pyspec_sim,
|
2022-11-14 07:32:33 +00:00
|
|
|
../tools/t8n/t8n,
|
|
|
|
../tools/t8n/t8n_test,
|
2024-06-19 01:58:08 +00:00
|
|
|
../tools/t8n/t8n_debug,
|
2022-11-14 07:32:33 +00:00
|
|
|
../tools/evmstate/evmstate,
|
2024-08-23 14:39:33 +00:00
|
|
|
../tools/evmstate/evmstate_test
|