@@ -64,49 +64,50 @@ Launch an automated test sequence on Silkworm RpcDaemon (aka Silkrpc) or Erigon
64
64
-e,--verify-external-provider: <provider_url> send any request also to external API endpoint as reference
65
65
-i,--without-compare-results: send request without compare results
66
66
-w,--waiting_time: waiting after test execution (millisec)
67
+ -S,--serial: runs tests in serial way
67
68
68
69
```
69
70
70
71
# Invoke examples
71
72
72
73
```
73
- ./run_tests.py -b mainnet - d -c -v 1
74
+ ./run_tests.py -d -c -v 1
74
75
```
75
76
76
77
Runs all tests on main net chain comparing Silkrpc response with rpcdaemon response, printing each test result
77
78
78
79
```
79
- ./run_tests.py -b mainnet - c -v 1
80
+ ./run_tests.py -c -v 1
80
81
```
81
82
82
83
Runs all tests on main net chain comparing silkrpc response to response saved on json file, printing each test result
83
84
84
85
```
85
- ./run_tests.py -b mainnet - c -a eth_call
86
+ ./run_tests.py -c -A eth_call
86
87
```
87
88
88
89
Runs all tests of eth_call on main net chain comparing silkrpc response with saved json file, printing only failed tests
89
90
90
91
```
91
- ./run_tests.py -b mainnet - r -c -a eth_call -t 1
92
+ ./run_tests.py -r -c -A eth_call -t 1
92
93
```
93
94
94
95
Runs test 1 of eth_call on main net chain comparing rpcdaemon response to saved json file, printing only failed tests
95
96
96
97
```
97
- ./run_tests.py -b mainnet - r -c -t 20 -v 1
98
+ ./run_tests.py -r -c -t 20 -v 1
98
99
```
99
100
100
101
Runs test number 20 in main net chain using rpcdaemon and compare result with json file, printing each test result
101
102
102
103
```
103
- ./run_tests.py -b mainnet - d -c -X 20 -v 1
104
+ ./run_tests.py -d -c -X 20 -v 1
104
105
```
105
106
106
107
Runs all tests (excluding test number 20) on main net chain comparing silkrpc response with rpcdaemon response, printing each test result
107
108
108
109
```
109
- ./run_tests.py -b mainnet - d -c -x eth_call -v 1
110
+ ./run_tests.py -d -c -x eth_call -v 1
110
111
```
111
112
112
113
0 commit comments