arith.json, boolean.json, and mktx.json test fixtures don't provide useful information (#90)

This commit is contained in:
Dustin Brody 2018-07-30 15:29:13 +00:00 committed by Mamy Ratsimbazafy
parent 4944fef3ae
commit 1921f9b389
2 changed files with 6 additions and 5 deletions

View File

@ -719,9 +719,9 @@ OK: 18/18 Fail: 0/18 Skip: 0/18
OK: 0/36 Fail: 0/36 Skip: 36/36 OK: 0/36 Fail: 0/36 Skip: 36/36
## vmTests ## vmTests
```diff ```diff
- arith.json Fail arith.json Skip
- boolean.json Fail boolean.json Skip
- mktx.json Fail mktx.json Skip
+ suicide.json OK + suicide.json OK
``` ```
OK: 1/4 Fail: 3/4 Skip: 0/4 OK: 1/4 Fail: 0/4 Skip: 3/4

View File

@ -26,7 +26,8 @@ proc validTest*(folder: string, name: string): bool =
result = "calldatacopy" notin name and result = "calldatacopy" notin name and
"balanceAddressInputTooBigRightMyAddress." notin name and "balanceAddressInputTooBigRightMyAddress." notin name and
"callstatelessToReturn1" 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" #result = name == "exp2.json"
macro jsonTest*(s: static[string], handler: untyped): untyped = macro jsonTest*(s: static[string], handler: untyped): untyped =