From 645cf70112495a0326371d8f81e2095da87f15bf Mon Sep 17 00:00:00 2001 From: Araq Date: Mon, 12 Oct 2015 19:58:43 +0200 Subject: [PATCH] disable new BoehmGC tests on Windows --- tests/testament/categories.nim | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/tests/testament/categories.nim b/tests/testament/categories.nim index 33ce086d35..3166942ecb 100644 --- a/tests/testament/categories.nim +++ b/tests/testament/categories.nim @@ -125,10 +125,13 @@ proc gcTests(r: var TResults, cat: Category, options: string) = " -d:release --gc:markAndSweep", cat, actionRun) template test(filename: expr): stmt = testWithoutBoehm filename - testSpec r, makeTest("tests/gc" / filename, options & - " --gc:boehm", cat, actionRun) - testSpec r, makeTest("tests/gc" / filename, options & - " -d:release --gc:boehm", cat, actionRun) + when not defined(windows): + # AR: cannot find any boehm.dll on the net, right now, so disabled + # for windows: + testSpec r, makeTest("tests/gc" / filename, options & + " --gc:boehm", cat, actionRun) + testSpec r, makeTest("tests/gc" / filename, options & + " -d:release --gc:boehm", cat, actionRun) test "gcemscripten" test "growobjcrash"