diff options
Diffstat (limited to 'tests/stdlib')
-rw-r--r-- | tests/stdlib/tgetaddrinfo.nim | 2 | ||||
-rw-r--r-- | tests/stdlib/thttpclient_ssl.nim | 1 | ||||
-rw-r--r-- | tests/stdlib/tosprocterminate.nim | 2 |
3 files changed, 4 insertions, 1 deletions
diff --git a/tests/stdlib/tgetaddrinfo.nim b/tests/stdlib/tgetaddrinfo.nim index 225546aa9..1c9d020a1 100644 --- a/tests/stdlib/tgetaddrinfo.nim +++ b/tests/stdlib/tgetaddrinfo.nim @@ -15,7 +15,7 @@ block DGRAM_UDP: doAssert aiList.ai_next == nil freeAddrInfo aiList -when defined(posix) and not defined(haiku) and not defined(freebsd): +when defined(posix) and not defined(haiku) and not defined(freebsd) and not defined(openbsd): block RAW_ICMP: # the port will be ignored diff --git a/tests/stdlib/thttpclient_ssl.nim b/tests/stdlib/thttpclient_ssl.nim index f247ae442..aa278c811 100644 --- a/tests/stdlib/thttpclient_ssl.nim +++ b/tests/stdlib/thttpclient_ssl.nim @@ -1,5 +1,6 @@ discard """ cmd: "nim $target --threads:on -d:ssl $options $file" + disabled: "openbsd" """ # Nim - Basic SSL integration tests diff --git a/tests/stdlib/tosprocterminate.nim b/tests/stdlib/tosprocterminate.nim index d487b5e60..c02e0a8da 100644 --- a/tests/stdlib/tosprocterminate.nim +++ b/tests/stdlib/tosprocterminate.nim @@ -8,6 +8,8 @@ import os, osproc, times, std / monotimes when defined(Windows): const ProgramWhichDoesNotEnd = "notepad" +elif defined(openbsd): + const ProgramWhichDoesNotEnd = "/bin/cat" else: const ProgramWhichDoesNotEnd = "/bin/sh" |