summary refs log tree commit diff stats
path: root/koch.nim
diff options
context:
space:
mode:
authorTimothee Cour <timothee.cour2@gmail.com>2020-05-19 00:41:31 -0700
committerGitHub <noreply@github.com>2020-05-19 09:41:31 +0200
commite909486e5cde5a4a77cd6f21b42fc9ab38ec2ae6 (patch)
tree7367a3774091f156d91e46cd4c292441ab3da46e /koch.nim
parent27741d6a5c9ec87a6938b2928ae54b22bc93d9be (diff)
downloadNim-e909486e5cde5a4a77cd6f21b42fc9ab38ec2ae6.tar.gz
trunner was not actually being tested in non-CTFFI mode; minor testament cleanups (#14377)
* use check
* trunner now works with cpp
* cleanup: move compiler/unittest_light => stdtest/unittest_light
* fix tests/readme.md
* remove deadcode references to rodfiles
* fix for windows
Diffstat (limited to 'koch.nim')
-rw-r--r--koch.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/koch.nim b/koch.nim
index 3ec40534b..0391c3c4a 100644
--- a/koch.nim
+++ b/koch.nim
@@ -554,7 +554,7 @@ proc runCI(cmd: string) =
         # no need to bootstrap with koch boot (would be slower)
         let backend = if doUseCpp(): "cpp" else: "c"
         execFold("build with -d:nimHasLibFFI", "nim $1 -d:release -d:nimHasLibFFI -o:$2 compiler/nim.nim" % [backend, nimFFI])
-        execFold("test with -d:nimHasLibFFI", "$1 $2 -r testament/testament --nim:$1 r tests/trunner.nim" % [nimFFI, backend])
+        execFold("test with -d:nimHasLibFFI", "$1 $2 -r testament/testament --nim:$1 r tests/misc/trunner.nim -d:nimTrunnerFfi" % [nimFFI, backend])
 
     execFold("Run nimdoc tests", "nim c -r nimdoc/tester")
     execFold("Run nimpretty tests", "nim c -r nimpretty/tester.nim")