diff options
author | metagn <metagngn@gmail.com> | 2023-05-26 18:07:37 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-26 17:07:37 +0200 |
commit | 1aaff9dc48337b58d5606cc18c5ba777cab1a0ba (patch) | |
tree | 1806309cd8cfbe9841cc68e3e4b524ef134f239f /testament | |
parent | 656706026b2357a6ff195e3f509f793553e95e8a (diff) | |
download | Nim-1aaff9dc48337b58d5606cc18c5ba777cab1a0ba.tar.gz |
fix & add test for basic hot code reloading case (#21915)
fixes #21885
Diffstat (limited to 'testament')
-rw-r--r-- | testament/categories.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testament/categories.nim b/testament/categories.nim index d554ebe34..d5964225f 100644 --- a/testament/categories.nim +++ b/testament/categories.nim @@ -80,6 +80,7 @@ proc runBasicDLLTest(c, r: var TResults, cat: Category, options: string, isOrc = testSpec r, makeTest("tests/dll/client.nim", options & " --threads:on" & rpath, cat) testSpec r, makeTest("tests/dll/nimhcr_unit.nim", options & " --threads:off" & rpath, cat) testSpec r, makeTest("tests/dll/visibility.nim", options & " --threads:off" & rpath, cat) + testSpec r, makeTest("tests/dll/nimhcr_basic.nim", options & " --threads:off" & rpath, cat) if "boehm" notin options: # force build required - see the comments in the .nim file for more details |