version = "1.0.0" author = "Status Research & Development GmbH" description = "Ethereum Common library" license = "MIT" skipDirs = @["tests"] requires "nim >= 1.2.0", "nimcrypto", "stint", "secp256k1", "rocksdb", "chronos", "chronicles", "stew", "nat_traversal", "metrics", "sqlite3_abi", "confutils", "testutils" proc runTest(path: string) = echo "\nRunning: ", path exec "nim c -r -d:release -d:chronicles_log_level=ERROR --verbosity:0 --hints:off " & path rmFile path proc runKeyfileTests() = runTest("tests/keyfile/all_tests") task test_keyfile, "run keyfile tests": runKeyfileTests() proc runKeysTests() = runTest("tests/keys/all_tests") task test_keys, "run keys tests": runKeysTests() proc runP2pTests() = for filename in [ "les/test_flow_control", "test_auth", "test_crypt", "test_discovery", "test_ecies", "test_enode", "test_rlpx_thunk", "test_shh", "test_shh_config", "test_shh_connect", "test_protocol_handlers", "test_enr", "test_discoveryv5", "test_discv5_encoding" ]: runTest("tests/p2p/" & filename) task test_p2p, "run p2p tests": runP2pTests() proc runRlpTests() = runTest("tests/rlp/all_tests") task test_rlp, "run rlp tests": runRlpTests() proc runTrieTests() = runTest("tests/trie/all_tests") task test_trie, "run trie tests": runTrieTests() proc runDbTests() = runTest("tests/db/all_tests") task test_db, "run db tests": runDbTests() task test, "run tests": for filename in [ "test_bloom", ]: runTest("tests/" & filename) runKeyfileTests() runKeysTests() runP2pTests() runRlpTests() runTrieTests() runDbTests()