summary refs log tree commit diff stats
path: root/tests/misc/trunner_special.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/misc/trunner_special.nim')
-rw-r--r--tests/misc/trunner_special.nim8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/misc/trunner_special.nim b/tests/misc/trunner_special.nim
index 50a2e4d5a..e08b419b0 100644
--- a/tests/misc/trunner_special.nim
+++ b/tests/misc/trunner_special.nim
@@ -1,6 +1,7 @@
 discard """
   targets: "c cpp"
   joinable: false
+  disabled: osx
 """
 
 #[
@@ -13,6 +14,10 @@ xxx test all tests/untestable/* here, possibly with adjustments to make running
 import std/[strformat,os,unittest,compilesettings]
 import stdtest/specialpaths
 
+
+from stdtest/testutils import disableSSLTesting
+
+
 const
   nim = getCurrentCompilerExe()
   mode = querySetting(backend)
@@ -28,4 +33,5 @@ proc main =
   block: # SSL certificate check integration tests
     runCmd fmt"{nim} r {options} -d:ssl --threads:on --mm:refc {testsDir}/untestable/thttpclient_ssl_remotenetwork.nim"
 
-main()
+when not disableSSLTesting():
+  main()