diff options
author | Simon Hafner <hafnersimon@gmail.com> | 2014-05-03 12:14:28 -0500 |
---|---|---|
committer | Simon Hafner <hafnersimon@gmail.com> | 2014-05-03 12:14:28 -0500 |
commit | dfeb573edb5563f1ff6bfd30f1c3914a88565332 (patch) | |
tree | d88ea7786c16aef205b83e759844ba67dce3722b | |
parent | 3adceb34e06f218d3f679b90c134b7aaf2de67b3 (diff) | |
download | Nim-dfeb573edb5563f1ff6bfd30f1c3914a88565332.tar.gz |
fixed paths because caasdriver is now in testament
-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 = |