diff options
author | Clyybber <darkmine956@gmail.com> | 2021-01-02 21:47:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-02 21:47:26 +0100 |
commit | cf714c129f7dd598863d1cc588e685df2438c658 (patch) | |
tree | 189e04a9d3c7aee5ba1cff1ed32fe62423cb2ba9 /tests/misc/trunner.nim | |
parent | 471aab86a0b793afe34a36b41e4366a686b589b9 (diff) | |
download | Nim-cf714c129f7dd598863d1cc588e685df2438c658.tar.gz |
Make config processing order test more robust
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 874ad66d6..3f5b10f97 100644 --- a/tests/misc/trunner.nim +++ b/tests/misc/trunner.nim @@ -225,7 +225,7 @@ sub/mmain.idx""", context check execCmdEx(cmd) == ("witness\n", 0) block: # config.nims, nim.cfg, hintConf, bug #16557 - let cmd = fmt"{nim} r {defaultHintsOff} --hint:conf tests/newconfig/bar/mfoo.nim" + let cmd = fmt"{nim} r {defaultHintsOff} --hint:conf --skipParentCfg tests/newconfig/bar/mfoo.nim" let (outp, exitCode) = execCmdEx(cmd, options = {poStdErrToStdOut}) doAssert exitCode == 0 let dir = getCurrentDir() |