diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2021-04-11 17:37:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-11 17:37:32 +0200 |
commit | 4780b08b9d2b06d20ce45167b2b4d11a816518af (patch) | |
tree | 965915d135d7ff86ef48d5bda3a9e487d1a36b18 /testament | |
parent | ceadf54d7649b8cc728fd0b6df966bbf28bf55bd (diff) | |
download | Nim-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.nim | 2 |
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) |