summary refs log tree commit diff stats
path: root/testament
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2021-04-11 17:37:32 +0200
committerGitHub <noreply@github.com>2021-04-11 17:37:32 +0200
commit4780b08b9d2b06d20ce45167b2b4d11a816518af (patch)
tree965915d135d7ff86ef48d5bda3a9e487d1a36b18 /testament
parentceadf54d7649b8cc728fd0b6df966bbf28bf55bd (diff)
downloadNim-4780b08b9d2b06d20ce45167b2b4d11a816518af.tar.gz
IC: integrity checking (#17695)
* IC: integrity checking: the plumbing code
* progress
* progress + bugfix (yes, the code already found a bug)
* implemented integrity checking
Diffstat (limited to 'testament')
-rw-r--r--testament/categories.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/testament/categories.nim b/testament/categories.nim
index af6331dde..618046287 100644
--- a/testament/categories.nim
+++ b/testament/categories.nim
@@ -488,7 +488,7 @@ proc icTests(r: var TResults; testsDir: string, cat: Category, options: string)
     tooltests = ["compiler/nim.nim", "tools/nimgrep.nim"]
     writeOnly = " --incremental:writeonly "
     readOnly = " --incremental:readonly "
-    incrementalOn = " --incremental:on "
+    incrementalOn = " --incremental:on -d:nimIcIntegrityChecks "
 
   template test(x: untyped) =
     testSpecWithNimcache(r, makeRawTest(file, x & options, cat), nimcache)