diff options
author | Arne Döring <arne.doering@gmx.net> | 2018-11-28 01:57:13 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-12-11 21:23:18 +0100 |
commit | b26378a468eeaa08aefe94e683a57246114e721d (patch) | |
tree | 5eee50b49354d1a90941bd85e85894858a9df947 /testament/backend.nim | |
parent | 7f6feb603441ed08e3c0b55d91dd34234d30ea58 (diff) | |
download | Nim-b26378a468eeaa08aefe94e683a57246114e721d.tar.gz |
WIP, most tests are now skipped
Diffstat (limited to 'testament/backend.nim')
-rw-r--r-- | testament/backend.nim | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/testament/backend.nim b/testament/backend.nim index 385f1171c..a1de5859a 100644 --- a/testament/backend.nim +++ b/testament/backend.nim @@ -45,8 +45,7 @@ var currentCategory: string entries: int -proc writeTestResult*(name, category, target, - action, result, expected, given: string) = +proc writeTestResult*(name, category, target, result, expected, given: string) = createDir("testresults") if currentCategory != category: if currentCategory.len > 0: @@ -58,7 +57,7 @@ proc writeTestResult*(name, category, target, entries = 0 let jentry = %*{"name": name, "category": category, "target": target, - "action": action, "result": result, "expected": expected, "given": given, + "result": result, "expected": expected, "given": given, "machine": thisMachine.string, "commit": thisCommit.string, "branch": thisBranch} if entries > 0: results.writeLine(",") |