diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-04-22 23:07:22 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-23 08:07:22 +0200 |
commit | e4a3feeb92940a9b3c4ce88fc808a0cdff2e4e9c (patch) | |
tree | f6c8a7b504b77be3a9682c8a7029cf0b33128118 /tests/misc/trunner.nim | |
parent | 56859fe8516cd3e8191f9162c6409aeed8493941 (diff) | |
download | Nim-e4a3feeb92940a9b3c4ce88fc808a0cdff2e4e9c.tar.gz |
add `--processing:dots|filenames|off` to customize `hintProcessing` (#17817)
Diffstat (limited to 'tests/misc/trunner.nim')
-rw-r--r-- | tests/misc/trunner.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/misc/trunner.nim b/tests/misc/trunner.nim index df9ee9a48..505a06cf8 100644 --- a/tests/misc/trunner.nim +++ b/tests/misc/trunner.nim @@ -92,7 +92,7 @@ else: # don't run twice the same test of 5: nimcache / htmldocsDirname else: file.parentDir / htmldocsDirname - var cmd = fmt"{nim} doc --index:on --listFullPaths --hint:successX:on --nimcache:{nimcache} {options[i]} {file}" + var cmd = fmt"{nim} doc --index:on --filenames:abs --hint:successX:on --nimcache:{nimcache} {options[i]} {file}" removeDir(htmldocsDir) let (outp, exitCode) = execCmdEx(cmd) check exitCode == 0 |