Make test independent of repo location (#16571)

* Make test independent of repo location

* Fix differently
This commit is contained in:
Clyybber
2021-01-03 19:15:56 +01:00
committed by GitHub
parent c82c67dc69
commit a0134671ee

View File

@@ -230,8 +230,6 @@ sub/mmain.idx""", context
doAssert exitCode == 0
let dir = getCurrentDir()
let files = """
config/nim.cfg
config/config.nims
tests/config.nims
tests/newconfig/bar/nim.cfg
tests/newconfig/bar/config.nims
@@ -241,7 +239,7 @@ tests/newconfig/bar/mfoo.nims""".splitLines
for a in files:
let b = dir / a
expected.add &"Hint: used config file '{b}' [Conf]\n"
doAssert outp == expected, outp & "\n" & expected
doAssert outp.endsWith expected, outp & "\n" & expected
block: # nim --eval
let opt = "--hints:off"