diff options
author | Araq <rumpf_a@web.de> | 2014-08-29 02:23:40 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-08-29 02:23:40 +0200 |
commit | 0f4567d59e8d0910be344babeef1b5a62f410b14 (patch) | |
tree | 11fabb68b8852cb67dbefab3438fc660b7045956 /tests/testament | |
parent | a68f17a9f78e762a8cb77a1fa088e2a507ae44a4 (diff) | |
download | Nim-0f4567d59e8d0910be344babeef1b5a62f410b14.tar.gz |
koch now uses nim.exe
Diffstat (limited to 'tests/testament')
-rw-r--r-- | tests/testament/categories.nim | 2 | ||||
-rw-r--r-- | tests/testament/specs.nim | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/testament/categories.nim b/tests/testament/categories.nim index a81e4687a..3f4d663cb 100644 --- a/tests/testament/categories.nim +++ b/tests/testament/categories.nim @@ -87,7 +87,7 @@ proc runBasicDLLTest(c, r: var TResults, cat: Category, options: string) = else: # posix relies on crappy LD_LIBRARY_PATH (ugh!): var libpath = getenv"LD_LIBRARY_PATH".string - if peg"\i '/nimrod' (!'/')* '/lib'" notin libpath: + if peg"\i '/nim' (!'/')* '/lib'" notin libpath: echo "[Warning] insufficient LD_LIBRARY_PATH" var serverDll = DynlibFormat % "server" safeCopyFile("tests/dll" / serverDll, "lib" / serverDll) diff --git a/tests/testament/specs.nim b/tests/testament/specs.nim index b2cccca56..9544fe71a 100644 --- a/tests/testament/specs.nim +++ b/tests/testament/specs.nim @@ -10,7 +10,7 @@ import parseutils, strutils, os, osproc, streams, parsecfg const - cmdTemplate* = r"nimrod $target --hints:on $options $file" + cmdTemplate* = r"nim $target --hints:on $options $file" type TTestAction* = enum @@ -18,7 +18,7 @@ type actionRun = "run" actionReject = "reject" TResultEnum* = enum - reNimrodcCrash, # nimrod compiler seems to have crashed + reNimrodcCrash, # nim compiler seems to have crashed reMsgsDiffer, # error messages differ reFilesDiffer, # expected and given filenames differ reLinesDiffer, # expected and given line numbers differ |