From f2009760584d6e27cbec38cb2f145698d1bcd373 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arne=20D=C3=B6ring?= Date: Fri, 16 Nov 2018 14:37:27 +0100 Subject: [PATCH] fix for dll tests --- testament/categories.nim | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/testament/categories.nim b/testament/categories.nim index 36f2a271ab..d7e18c8b80 100644 --- a/testament/categories.nim +++ b/testament/categories.nim @@ -97,11 +97,10 @@ proc runBasicDLLTest(c, r: var TResults, cat: Category, options: string) = else: "" - testSpec c, makeTest("lib/nimrtl.nim", - options & " --app:lib -d:createNimRtl --threads:on", cat) - testSpec c, makeTest("tests/dll/server.nim", - options & " --app:lib -d:useNimRtl --threads:on" & rpath, cat) - + testNoSpec c, makeTest("lib/nimrtl.nim", + options & " --app:lib -d:createNimRtl --threads:on", cat, actionCompile) + testNoSpec c, makeTest("tests/dll/server.nim", + options & " --app:lib -d:useNimRtl --threads:on" & rpath, cat, actionCompile) when defined(Windows): # windows looks in the dir of the exe (yay!):