update hive statistics

This commit is contained in:
jangko 2022-11-18 11:58:04 +07:00
parent fffe071f86
commit 6b28b64395
No known key found for this signature in database
GPG Key ID: 31702AE10541E6B9
1 changed files with 23 additions and 9 deletions

View File

@ -66,22 +66,26 @@ or
- `devp2p/eth` -> require at least 2 clients
- `devp2p/discv4`
- `devp2p/snap`
- `ethereum/sync`
- `ethereum/consensus`
- `ethereum/rpc`
- `ethereum/graphql`
- `ethereum/engine`
- `smoke/network`
- `smoke/genesis`
- `smoke/clique`
The number of passes and fails output at the time of writing (2021-05-20) is:
The number of passes and fails output at the time of writing (2022-11-18) is:
ethereum/consensus: 47951 pass, 0 fail, 47951 total London
ethereum/graphql: 40 pass, 6 fail, 46 total
devp2p/discv4: 3 pass, 11 fail, 14 total
devp2p/eth: 1 pass, 8 fail, 9 total
ethereum/rpc: 3 pass, 35 fail, 38 total
ethereum/sync: 2 pass, 2 fail, 4 total
ethereum/consensus: 48682 pass, 0 fail, 48682 total London
ethereum/graphql: 39 pass, 7 fail, 46 total
devp2p/discv4: 14 pass, 0 fail, 14 total
devp2p/eth: 16 pass, 0 fail, 16 total
devp2p/snap 0 pass, 5 fail, 5 total
ethereum/rpc: 15 pass, 26 fail, 41 total
ethereum/sync: 3 pass, 3 fail, 6 total
ethereum/engine: 73 pass, 111 fail, 184 total
smoke/genesis: 3 pass, 0 fail, 3 total
smoke/network: 1 pass, 0 fail, 1 total
smoke/clique: 1 pass, 0 fail, 1 total
@ -103,13 +107,23 @@ in a markdown file with the same name with the simulator.
```
Note that this progam expects the _./tests_ directory accessible. So if
you compile from the _hive_integration/nodocker_ directory on a Posix
system,, the _./tests_ directory would be a symlink to _../../tests_.
system, the _./tests_ directory would be a symlink to _../../tests_.
- ethereum/graphql
```nim
nim c -r -d:release hive_integration/nodocker/graphql/graphql_sim
```
Similar to above, the directory _./hive_integration_ is expeced.
Similar to above, the directory _./hive_integration_ is expected.
- ethereum/engine
```nim
nim c -r -d:release hive_integration/nodocker/engine/engine_sim
```
- ethereum/rpc
```nim
nim c -r -d:release hive_integration/nodocker/rpc/rpc_sim
```
## Observations when working with hive/docker