diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/dll/client.nim | 1 | ||||
-rw-r--r-- | tests/js/tconsole.nim | 1 | ||||
-rw-r--r-- | tests/niminaction/Chapter8/sfml/sfml_test.nim | 1 | ||||
-rw-r--r-- | tests/stdlib/tgetaddrinfo.nim | 2 |
4 files changed, 4 insertions, 1 deletions
diff --git a/tests/dll/client.nim b/tests/dll/client.nim index 150af3a17..90ca05149 100644 --- a/tests/dll/client.nim +++ b/tests/dll/client.nim @@ -1,5 +1,6 @@ discard """ output: "Done" + disabled: "freebsd" cmd: "nim $target --debuginfo --hints:on --define:useNimRtl $options $file" """ diff --git a/tests/js/tconsole.nim b/tests/js/tconsole.nim index 88c71ea18..b2eecc656 100644 --- a/tests/js/tconsole.nim +++ b/tests/js/tconsole.nim @@ -3,6 +3,7 @@ discard """ Hello, console 1 2 3 ''' + disabled: "freebsd" """ # This file tests the JavaScript console diff --git a/tests/niminaction/Chapter8/sfml/sfml_test.nim b/tests/niminaction/Chapter8/sfml/sfml_test.nim index e71060cb4..3c158d1de 100644 --- a/tests/niminaction/Chapter8/sfml/sfml_test.nim +++ b/tests/niminaction/Chapter8/sfml/sfml_test.nim @@ -1,6 +1,7 @@ discard """ action: compile disabled: "windows" +disabled: "freebsd" """ import sfml, os diff --git a/tests/stdlib/tgetaddrinfo.nim b/tests/stdlib/tgetaddrinfo.nim index 18e0bc7c4..225546aa9 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): +when defined(posix) and not defined(haiku) and not defined(freebsd): block RAW_ICMP: # the port will be ignored |