summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorAman Gupta <aman@tmm1.net>2015-10-07 18:15:59 -0700
committerAman Gupta <aman@tmm1.net>2015-10-07 18:15:59 -0700
commit24ec975aa172b59e86944ea62355da3f436ea41d (patch)
treedfd6aaee5f594a829fa563b888ff8e9b03641256 /tests
parentf0793a6d97164bbcba4145525fc5d1a64b6c14d7 (diff)
downloadNim-24ec975aa172b59e86944ea62355da3f436ea41d.tar.gz
fix compile error
Diffstat (limited to 'tests')
-rw-r--r--tests/testament/tester.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testament/tester.nim b/tests/testament/tester.nim
index 5b315198d..0470627f2 100644
--- a/tests/testament/tester.nim
+++ b/tests/testament/tester.nim
@@ -175,7 +175,7 @@ proc addResult(r: var TResults, test: TTest,
       else:
         ("Failed", "Expected:\n" & expected & "\n\n" & "Gotten:\n" & given)
     var p = startProcess("appveyor", args=["AddTest", test.name & test.options, "-FileName", test.cat.string, "-Outcome", outcome, "-ErrorMessage", msg, "-Duration", $(duration*1000).int], options={poStdErrToStdOut, poUsePath, poParentStreams})
-    waitForExit(p)
+    discard waitForExit(p)
     close(p)
 
 proc cmpMsgs(r: var TResults, expected, given: TSpec, test: TTest) =