summary refs log tree commit diff stats
path: root/tests/vm/tgorge.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2016-10-24 20:10:10 +0200
committerAraq <rumpf_a@web.de>2016-10-24 20:10:10 +0200
commitbad35a2709105c8d5d8925c8fdb3d847673d132c (patch)
tree975d38631af5d7c2000ef741867e42b122b71d73 /tests/vm/tgorge.nim
parent06e03099e4238c949607c2553ca87146a4a86cff (diff)
downloadNim-bad35a2709105c8d5d8925c8fdb3d847673d132c.tar.gz
cleanup tgorge test
Diffstat (limited to 'tests/vm/tgorge.nim')
-rw-r--r--tests/vm/tgorge.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/vm/tgorge.nim b/tests/vm/tgorge.nim
index aeaf54df8..596f5d667 100644
--- a/tests/vm/tgorge.nim
+++ b/tests/vm/tgorge.nim
@@ -4,9 +4,9 @@ template getScriptDir(): string =
   parentDir(instantiationInfo(-1, true).filename)
 
 const
-  execName = when defined(windows): "tgorge.bat" else: "./tgorge.sh"
+  execName = when defined(windows): "tgorge.bat" else: "sh tgorge.sh"
   relOutput = gorge(execName)
   absOutput = gorge(getScriptDir() / execName)
 
 doAssert relOutput == "gorge test"
-doAssert absOutput == "gorge test"
\ No newline at end of file
+doAssert absOutput == "gorge test"