diff options
-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 5cd5c1545..54e962693 100644 --- a/tests/testament/categories.nim +++ b/tests/testament/categories.nim @@ -330,8 +330,9 @@ proc `&?.`(a, b: string): string = proc processCategory(r: var TResults, cat: Category, options: string) = case cat.string.normalize of "rodfiles": - compileRodFiles(r, cat, options) - runRodFiles(r, cat, options) + discard # Disabled for now + #compileRodFiles(r, cat, options) + #runRodFiles(r, cat, options) of "js": # XXX JS doesn't need to be special anymore jsTests(r, cat, options) |