diff options
author | Leorize <leorize+oss@disroot.org> | 2019-08-02 17:39:22 +0700 |
---|---|---|
committer | Dominik Picheta <dominikpicheta@googlemail.com> | 2019-08-04 12:15:17 +0100 |
commit | 51d998390cdbcc2c40d39e91b394a448da38d47d (patch) | |
tree | 6cfd5ba198975bdf3b41b5addb61974f3886c249 /tests/stdlib/tgetaddrinfo.nim | |
parent | df32c45757c2b63ff7756e5f14657524671da67a (diff) | |
download | Nim-51d998390cdbcc2c40d39e91b394a448da38d47d.tar.gz |
tgetaddrinfo: disable ICMP tests for Haiku
They're not supported by Haiku's getaddrinfo()
Diffstat (limited to 'tests/stdlib/tgetaddrinfo.nim')
-rw-r--r-- | tests/stdlib/tgetaddrinfo.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/stdlib/tgetaddrinfo.nim b/tests/stdlib/tgetaddrinfo.nim index aca87b6bd..18e0bc7c4 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): +when defined(posix) and not defined(haiku): block RAW_ICMP: # the port will be ignored |