You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
problem 1 koch temp c -r testament/testament.nim r tests/test.nim
probably doesn't do what you thought it did:
it roughly calls:
koch temp
bin/nim_temp c -r testament/testament.nim r tests/test.nim
this doesn't use bin/nim_temp to run tests, for that you need --nim:bin/nim_temp (bin/nim_temp is only used here to compile testament/testament.nim)
when not defined(windows): # xxx: on windows, dots not properly handled, gives: `....2\n\n`
(ie, would work in cmdline line but not if compile command called indirectly via execCmdEx as may be the case with koch temp c -r testament/testament.nim r tests/test.nim
The text was updated successfully, but these errors were encountered:
(replying to PM message)
koch temp c -r testament/testament.nim r tests/test.nim
probably doesn't do what you thought it did:
it roughly calls:
koch temp
bin/nim_temp c -r testament/testament.nim r tests/test.nim
this doesn't use
bin/nim_temp
to run tests, for that you need--nim:bin/nim_temp
(bin/nim_temp
is only used here to compile testament/testament.nim)problem 2
tests/test.nim is probably incorrect, should be tests/test/test.nim` according to fix #16693: testament spec
nimout
too lax nim-lang/Nim#16698problem 3
running your command took 171s due to a regression I found thanks to looking into your use case regression: compilation 5x slower (33s => 171s for nim_temp c testament) nim-lang/Nim#16703
problem 4
I can't reproduce your problem (annoying dot remains); maybe it's due to the same problem on windows as this:
fix
hintProcessing
dots interference withstatic:echo
andhintCC
; add tests fornim secret
, add tests for hintProcessing, misc other bug fixes nim-lang/Nim#16495 (review)(ie, would work in cmdline line but not if compile command called indirectly via
execCmdEx
as may be the case withkoch temp c -r testament/testament.nim r tests/test.nim
The text was updated successfully, but these errors were encountered: