diff options
Diffstat (limited to 'testament')
-rw-r--r-- | testament/categories.nim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/testament/categories.nim b/testament/categories.nim index 98ddd7e10..f8cc625c4 100644 --- a/testament/categories.nim +++ b/testament/categories.nim @@ -128,6 +128,9 @@ proc runBasicDLLTest(c, r: var TResults, cat: Category, options: string) = var test3 = makeTest("lib/nimhcr.nim", options & " --outdir:tests/dll" & rpath, cat) test3.spec.action = actionCompile testSpec c, test3 + var test4 = makeTest("tests/dll/visibility.nim", options & " --app:lib" & rpath, cat) + test4.spec.action = actionCompile + testSpec c, test4 # windows looks in the dir of the exe (yay!): when not defined(Windows): @@ -141,6 +144,7 @@ proc runBasicDLLTest(c, r: var TResults, cat: Category, options: string) = testSpec r, makeTest("tests/dll/client.nim", options & " --threads:on" & rpath, cat) testSpec r, makeTest("tests/dll/nimhcr_unit.nim", options & rpath, cat) + testSpec r, makeTest("tests/dll/visibility.nim", options & rpath, cat) if "boehm" notin options: # force build required - see the comments in the .nim file for more details |