diff options
-rw-r--r-- | doc/idetools.txt | 2 | ||||
-rw-r--r-- | tests/testament/caasdriver.nim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/idetools.txt b/doc/idetools.txt index d4f0f077d..0c554a80b 100644 --- a/doc/idetools.txt +++ b/doc/idetools.txt @@ -528,7 +528,7 @@ suite is not integrated with the main test suite and you have to run it manually. First you have to compile the tester:: $ cd my/nimrod/checkout/tests - $ nimrod c caasdriver.nim + $ nimrod c testament/caasdriver.nim Running the ``caasdriver`` without parameters will attempt to process all the test cases in all three operation modes. If a test succeeds diff --git a/tests/testament/caasdriver.nim b/tests/testament/caasdriver.nim index 28f0bae9b..22c5ed6fa 100644 --- a/tests/testament/caasdriver.nim +++ b/tests/testament/caasdriver.nim @@ -25,7 +25,7 @@ const silentReplaceText = "--verbosity:0 --hints:off" var - TesterDir = getAppDir() + TesterDir = getAppDir() / ".." NimrodBin = TesterDir / "../bin/nimrod" proc replaceVars(session: var TNimrodSession, text: string): string = |