summary refs log tree commit diff stats
path: root/tests/testament
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2017-10-16 12:45:43 +0200
committerAraq <rumpf_a@web.de>2017-10-16 12:45:43 +0200
commitb219fc74ad057a02a7455f0b83fa4239dbfe5979 (patch)
tree6a4f56c1cfc9a8a281125b4d2888831017c179f7 /tests/testament
parent4a7266e1c1ba34318e1aabf5977fb9dc2f19e355 (diff)
downloadNim-b219fc74ad057a02a7455f0b83fa4239dbfe5979.tar.gz
fixes #5143
Diffstat (limited to 'tests/testament')
-rw-r--r--tests/testament/categories.nim6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/testament/categories.nim b/tests/testament/categories.nim
index a93c79f5c..d620a4587 100644
--- a/tests/testament/categories.nim
+++ b/tests/testament/categories.nim
@@ -83,9 +83,9 @@ proc runBasicDLLTest(c, r: var TResults, cat: Category, options: string) =
       ""
 
   testSpec c, makeTest("lib/nimrtl.nim",
-    options & " --app:lib -d:createNimRtl", cat)
+    options & " --app:lib -d:createNimRtl --threads:on", cat)
   testSpec c, makeTest("tests/dll/server.nim",
-    options & " --app:lib -d:useNimRtl" & rpath, cat)
+    options & " --app:lib -d:useNimRtl --threads:on" & rpath, cat)
 
 
   when defined(Windows):
@@ -101,7 +101,7 @@ proc runBasicDLLTest(c, r: var TResults, cat: Category, options: string) =
     var nimrtlDll = DynlibFormat % "nimrtl"
     safeCopyFile("lib" / nimrtlDll, "tests/dll" / nimrtlDll)
 
-  testSpec r, makeTest("tests/dll/client.nim", options & " -d:useNimRtl" & rpath,
+  testSpec r, makeTest("tests/dll/client.nim", options & " -d:useNimRtl --threads:on" & rpath,
                        cat, actionRun)
 
 proc dllTests(r: var TResults, cat: Category, options: string) =