mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
use category as filename, and full filename in test name
This commit is contained in:
@@ -172,7 +172,7 @@ proc addResult(r: var TResults, test: TTest,
|
||||
("Skipped", "")
|
||||
else:
|
||||
("Failed", "Expected:\n" & expected & "\n\n" & "Gotten:\n" & given)
|
||||
discard execProcess("appveyor", args=["AddTest", name, "-Framework", test.cat.string, "-FileName", $test.name, "-Outcome", outcome, "-ErrorMessage", msg], options={poStdErrToStdOut, poUsePath})
|
||||
discard execProcess("appveyor", args=["AddTest", test.name & test.options, "-FileName", test.cat.string, "-Outcome", outcome, "-ErrorMessage", msg], options={poStdErrToStdOut, poUsePath})
|
||||
|
||||
proc cmpMsgs(r: var TResults, expected, given: TSpec, test: TTest) =
|
||||
if strip(expected.msg) notin strip(given.msg):
|
||||
|
||||
Reference in New Issue
Block a user