diff --git a/test/tls/tests_tls_netaccess.uts b/test/tls/tests_tls_netaccess.uts
index e4f2bc4fb3784656b65552b680a28848b5df9940..7cf8fb2bc3f8c3d7626ad72288bd7126814a9509 100644
--- a/test/tls/tests_tls_netaccess.uts
+++ b/test/tls/tests_tls_netaccess.uts
@@ -9,6 +9,7 @@
 ### DISCLAIMER: Those tests are slow ###
 
 = Load server util functions
+~ open_ssl_client
 
 import sys, os, re, time, multiprocessing, subprocess
 
@@ -58,14 +59,17 @@ def test_tls_server(suite="", version=""):
     
 
 = Testing TLS server with TLS 1.0 and TLS_RSA_WITH_RC4_128_SHA
+~ open_ssl_client
 
 test_tls_server("RC4-SHA", "-tls1")
 
 = Testing TLS server with TLS 1.2 and TLS_DHE_RSA_WITH_AES_128_CBC_SHA256
+~ open_ssl_client
 
 test_tls_server("DHE-RSA-AES128-SHA256", "-tls1_2")
 
 = Testing TLS server with TLS 1.2 and TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
+~ open_ssl_client
 
 test_tls_server("ECDHE-RSA-AES256-GCM-SHA384", "-tls1_2")