summary refs log tree commit diff stats
path: root/nimsuggest/tester.nim
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2017-03-10 11:29:16 +0100
committerAndreas Rumpf <rumpf_a@web.de>2017-03-10 11:29:16 +0100
commit68181e6da2ee22ad3411cd55f1c8b04df3d375cb (patch)
tree2bc8631b40e0c7e3f694892a50da0303e858a71c /nimsuggest/tester.nim
parentdb888475dcbd9d5a138ff191bdf3e188d750805f (diff)
downloadNim-68181e6da2ee22ad3411cd55f1c8b04df3d375cb.tar.gz
nimsuggest: maxresults limit; fixed local symbol usages priorizations
Diffstat (limited to 'nimsuggest/tester.nim')
-rw-r--r--nimsuggest/tester.nim3
1 files changed, 1 insertions, 2 deletions
diff --git a/nimsuggest/tester.nim b/nimsuggest/tester.nim
index 16f70beb5..4cda272af 100644
--- a/nimsuggest/tester.nim
+++ b/nimsuggest/tester.nim
@@ -304,8 +304,7 @@ proc runTest(filename: string): int =
 proc main() =
   var failures = 0
   if os.paramCount() > 0:
-    let f = os.paramStr(1)
-    let x = getAppDir() / f
+    let x = os.paramStr(1)
     let xx = expandFilename x
     failures += runTest(xx)
     failures += runEpcTest(xx)