diff options
author | Euan <euantorano@users.noreply.github.com> | 2020-10-05 11:00:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-05 12:00:06 +0200 |
commit | cc4c546f8f0846c44b295c9417c2fd98cb694ae8 (patch) | |
tree | 94f5c89c206a48f3acf84762101ad78ca1d2b4b9 | |
parent | b760fdc9ca858dd146a34da86eabbc3d43fb0833 (diff) | |
download | Nim-cc4c546f8f0846c44b295c9417c2fd98cb694ae8.tar.gz |
Fix #15493 - disable TLS emulation for NetBSD (#15494)
TLS emulation was already disabled for FreeBSD due to the same issue.
-rw-r--r-- | tests/stdlib/tssl.nims | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/stdlib/tssl.nims b/tests/stdlib/tssl.nims index 3f24dc325..4739e7f07 100644 --- a/tests/stdlib/tssl.nims +++ b/tests/stdlib/tssl.nims @@ -1,5 +1,5 @@ --threads:on --d:ssl -when defined(freebsd): - # See https://github.com/nim-lang/Nim/pull/15066#issuecomment-665541265 +when defined(freebsd) or defined(netbsd): + # See https://github.com/nim-lang/Nim/pull/15066#issuecomment-665541265 and https://github.com/nim-lang/Nim/issues/15493 --tlsEmulation:off |