diff options
author | Araq <rumpf_a@web.de> | 2014-08-29 09:12:12 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-08-29 09:12:12 +0200 |
commit | c6034277fcb597da03d064b773ad4f6823823fa0 (patch) | |
tree | bcd12c6af99162c2bc5f03cd374d7b54c07420f3 /tests/testament | |
parent | cd2c6128d1df471830ea7f842b57aa32aee5deab (diff) | |
download | Nim-c6034277fcb597da03d064b773ad4f6823823fa0.tar.gz |
further adaptations
Diffstat (limited to 'tests/testament')
-rw-r--r-- | tests/testament/caasdriver.nim | 4 | ||||
-rw-r--r-- | tests/testament/htmlgen.nim | 2 | ||||
-rw-r--r-- | tests/testament/specs.nim | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/tests/testament/caasdriver.nim b/tests/testament/caasdriver.nim index 4754fa342..8f2eec33b 100644 --- a/tests/testament/caasdriver.nim +++ b/tests/testament/caasdriver.nim @@ -33,7 +33,7 @@ proc replaceVars(session: var NimSession, text: string): string = result = result.replace(moduleReplaceVar, session.modname) result = result.replace(silentReplaceVar, silentReplaceText) -proc startNimrodSession(project, script: string, mode: TRunMode): +proc startNimSession(project, script: string, mode: TRunMode): NimSession = let (dir, name, ext) = project.splitFile result.mode = mode @@ -114,7 +114,7 @@ proc doScenario(script: string, output: PStream, mode: TRunMode, verbose: bool): if f.readLine(project): var - s = startNimrodSession(script.parentDir / project.string, script, mode) + s = startNimSession(script.parentDir / project.string, script, mode) tline = TaintedString("") ln = 1 diff --git a/tests/testament/htmlgen.nim b/tests/testament/htmlgen.nim index b91475aee..d863bd411 100644 --- a/tests/testament/htmlgen.nim +++ b/tests/testament/htmlgen.nim @@ -1,6 +1,6 @@ # # -# Nimrod Tester +# Nim Tester # (c) Copyright 2014 Andreas Rumpf # # See the file "copying.txt", included in this diff --git a/tests/testament/specs.nim b/tests/testament/specs.nim index 9544fe71a..37fe8cfee 100644 --- a/tests/testament/specs.nim +++ b/tests/testament/specs.nim @@ -18,7 +18,7 @@ type actionRun = "run" actionReject = "reject" TResultEnum* = enum - reNimrodcCrash, # nim compiler seems to have crashed + reNimcCrash, # nim compiler seems to have crashed reMsgsDiffer, # error messages differ reFilesDiffer, # expected and given filenames differ reLinesDiffer, # expected and given line numbers differ |