arith.json, boolean.json, and mktx.json test fixtures don't provide useful information (#90)
This commit is contained in:
parent
4944fef3ae
commit
1921f9b389
|
@ -719,9 +719,9 @@ OK: 18/18 Fail: 0/18 Skip: 0/18
|
|||
OK: 0/36 Fail: 0/36 Skip: 36/36
|
||||
## vmTests
|
||||
```diff
|
||||
- arith.json Fail
|
||||
- boolean.json Fail
|
||||
- mktx.json Fail
|
||||
arith.json Skip
|
||||
boolean.json Skip
|
||||
mktx.json Skip
|
||||
+ suicide.json OK
|
||||
```
|
||||
OK: 1/4 Fail: 3/4 Skip: 0/4
|
||||
OK: 1/4 Fail: 0/4 Skip: 3/4
|
||||
|
|
|
@ -26,7 +26,8 @@ proc validTest*(folder: string, name: string): bool =
|
|||
result = "calldatacopy" notin name and
|
||||
"balanceAddressInputTooBigRightMyAddress." notin name and
|
||||
"callstatelessToReturn1" notin name and
|
||||
folder notin @["vmRandomTest", "vmSystemOperations", "vmPerformance"]
|
||||
folder notin @["vmRandomTest", "vmSystemOperations", "vmPerformance"] and
|
||||
"boolean." notin name and "mktx." notin name and "arith." notin name
|
||||
#result = name == "exp2.json"
|
||||
|
||||
macro jsonTest*(s: static[string], handler: untyped): untyped =
|
||||
|
|
Loading…
Reference in New Issue