diff options
author | Araq <rumpf_a@web.de> | 2018-02-19 13:19:43 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-02-19 13:19:43 +0100 |
commit | 5fe0c386ea4d0ce288cc4ae3ed40ae603db991ce (patch) | |
tree | 3f7c66237b88e75b851e11a1f303ba38b47212f2 | |
parent | 564cff729a9a945924e40e57ce5be5af79dd6497 (diff) | |
download | Nim-5fe0c386ea4d0ce288cc4ae3ed40ae603db991ce.tar.gz |
disable symbol file tests for the old symbol file implementation
-rw-r--r-- | tests/testament/categories.nim | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/testament/categories.nim b/tests/testament/categories.nim index ac6b5b252..2f9198759 100644 --- a/tests/testament/categories.nim +++ b/tests/testament/categories.nim @@ -421,8 +421,9 @@ proc processSingleTest(r: var TResults, cat: Category, options, test: string) = proc processCategory(r: var TResults, cat: Category, options: string) = case cat.string.normalize of "rodfiles": - when false: compileRodFiles(r, cat, options) - runRodFiles(r, cat, options) + when false: + compileRodFiles(r, cat, options) + runRodFiles(r, cat, options) of "js": # XXX JS doesn't need to be special anymore jsTests(r, cat, options) |