diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2017-03-10 11:29:16 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-03-10 11:29:16 +0100 |
commit | 68181e6da2ee22ad3411cd55f1c8b04df3d375cb (patch) | |
tree | 2bc8631b40e0c7e3f694892a50da0303e858a71c /nimsuggest/tester.nim | |
parent | db888475dcbd9d5a138ff191bdf3e188d750805f (diff) | |
download | Nim-68181e6da2ee22ad3411cd55f1c8b04df3d375cb.tar.gz |
nimsuggest: maxresults limit; fixed local symbol usages priorizations
Diffstat (limited to 'nimsuggest/tester.nim')
-rw-r--r-- | nimsuggest/tester.nim | 3 |
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) |