summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorTimothee Cour <timothee.cour2@gmail.com>2021-06-16 23:20:33 -0700
committerGitHub <noreply@github.com>2021-06-17 08:20:33 +0200
commit99411674a6da72f608bfa870f51b3a296cd85eee (patch)
treeb7ebf01cbac5e741737c4f960ddaad884c5b81da
parentfd8b79707c1b936ed1ba42892f5e06f846e2816b (diff)
downloadNim-99411674a6da72f608bfa870f51b3a296cd85eee.tar.gz
tests/exception/tsetexceptions.nim not joinable (#18264)
-rw-r--r--tests/exception/tsetexceptions.nim3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/exception/tsetexceptions.nim b/tests/exception/tsetexceptions.nim
index 557fc1898..0e353f43e 100644
--- a/tests/exception/tsetexceptions.nim
+++ b/tests/exception/tsetexceptions.nim
@@ -1,7 +1,10 @@
 discard """
   targets: "c cpp js"
+  joinable: false
 """
 
+# refs https://github.com/nim-lang/Nim/pull/18247#issuecomment-860877161
+
 let ex = newException(CatchableError, "test")
 setCurrentException(ex)
 doAssert getCurrentException().msg == ex.msg