File tree Expand file tree Collapse file tree 4 files changed +12
-15
lines changed Expand file tree Collapse file tree 4 files changed +12
-15
lines changed Original file line number Diff line number Diff line change @@ -139,11 +139,6 @@ OK: 5/5 Fail: 0/5 Skip: 0/5
139
139
+ valid_multi_inf.json OK
140
140
```
141
141
OK: 6/6 Fail: 0/6 Skip: 0/6
142
- ## bls12_precompiles_before_fork
143
- ``` diff
144
- + precompile_before_fork.json OK
145
- ```
146
- OK: 1/1 Fail: 0/1 Skip: 0/1
147
142
## bls12_variable_length_input_contracts
148
143
``` diff
149
144
+ invalid_gas_g1msm.json OK
@@ -466,10 +461,9 @@ OK: 50/50 Fail: 0/50 Skip: 0/50
466
461
+ pointer_to_precompile.json OK
467
462
+ pointer_to_static.json OK
468
463
+ pointer_to_static_reentry.json OK
469
- + set_code_type_tx_pre_fork.json OK
470
464
+ static_to_pointer.json OK
471
465
```
472
- OK: 16/16 Fail: 0/16 Skip: 0/16
466
+ OK: 15/15 Fail: 0/15 Skip: 0/15
473
467
## shift_combinations
474
468
``` diff
475
469
+ combinations.json OK
@@ -557,4 +551,4 @@ OK: 2/2 Fail: 0/2 Skip: 0/2
557
551
OK: 1/1 Fail: 0/1 Skip: 0/1
558
552
559
553
---TOTAL---
560
- OK: 267/267 Fail: 0/267 Skip: 0/267
554
+ OK: 265/265 Fail: 0/265 Skip: 0/265
Original file line number Diff line number Diff line change @@ -158,6 +158,7 @@ if canEnableDebuggingSymbols:
158
158
-- define:nimOldCaseObjects # https://github.com/status-im/nim-confutils/issues/9
159
159
160
160
switch (" warningAsError" , " BareExcept:on" )
161
+ switch (" warningAsError" , " UnusedImport:on" )
161
162
switch (" hintAsError" , " ConvFromXtoItselfNotNeeded:on" )
162
163
switch (" hintAsError" , " DuplicateModuleImport:on" )
163
164
Original file line number Diff line number Diff line change 7
7
# This file may not be copied, modified, or distributed except according to
8
8
# those terms.
9
9
10
- {.push raises : [].}
10
+ {.push raises : [], gcsafe .}
11
11
12
12
import
13
- std/ [cmdline, os],
14
- unittest2,
15
13
eth/ common/ headers_rlp,
16
14
web3/ eth_api_types,
17
15
web3/ engine_api_types,
@@ -107,9 +105,13 @@ proc processFile*(fileName: string): bool =
107
105
return testPass
108
106
109
107
when isMainModule :
108
+ import
109
+ std/ [cmdline, os],
110
+ unittest2
111
+
110
112
if paramCount () == 0 :
111
113
let testFile = getAppFilename ().splitPath ().tail
112
114
echo " Usage: " & testFile & " vector.json"
113
115
quit (QuitFailure )
114
116
115
- check processFile (paramStr (1 ))
117
+ check processFile (paramStr (1 ))
Original file line number Diff line number Diff line change 7
7
# This file may not be copied, modified, or distributed except according to
8
8
# those terms.
9
9
10
- {.push raises : [].}
10
+ {.push raises : [], gcsafe .}
11
11
12
12
import
13
- std/ [os, osproc] ,
13
+ std/ os ,
14
14
unittest2,
15
15
./ eest_helpers,
16
16
./ eest_engine
@@ -32,4 +32,4 @@ runEESTSuite(
32
32
skipFiles,
33
33
baseFolder,
34
34
eestType
35
- )
35
+ )
You can’t perform that action at this time.
0 commit comments