From d1663ca81c6548f43bb69cf2147f577cb344090b Mon Sep 17 00:00:00 2001 From: Araq Date: Tue, 13 Dec 2016 09:22:05 +0100 Subject: [PATCH] disable not implemented test for sighashes --- tests/testament/categories.nim | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/testament/categories.nim b/tests/testament/categories.nim index 8094256534..c1aebedfa2 100644 --- a/tests/testament/categories.nim +++ b/tests/testament/categories.nim @@ -32,9 +32,10 @@ proc runRodFiles(r: var TResults, cat: Category, options: string) = # test basic recompilation scheme: test "hallo" test "hallo" - # test incremental type information: - test "hallo2" - delNimCache() + when false: + # test incremental type information: + test "hallo2" + delNimCache() # test type converters: test "aconv" @@ -382,7 +383,7 @@ proc `&.?`(a, b: string): string = proc `&?.`(a, b: string): string = # candidate for the stdlib? result = if a.endswith(b): a else: a & b - + proc processSingleTest(r: var TResults, cat: Category, options, test: string) = let test = "tests" & DirSep &.? cat.string / test