[ovs-dev] [PATCH] tests: Only run python SSL test if SSL support is configured

Simon Horman simon.horman at netronome.com
Wed May 3 15:55:51 UTC 2017


Only run python SSL test, which invokes ovsdb with a --remote=pssl,
if SSL support is configured.

Without this change the following error appears when running
the test-suite when OVS is configured with --disable-ssl.

+ovsdb-server: Private key specified but Open vSwitch was built without SSL support
./ovsdb-idl.at:1215: exit code was 1, expected 0

Fixes: d90ed7d65ba8 ("python: Add SSL support to the python ovs client library")
Cc: Numan Siddique <nusiddiq at redhat.com>
Signed-off-by: Simon Horman <simon.horman at netronome.com>
---
 tests/ovsdb-idl.at | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tests/ovsdb-idl.at b/tests/ovsdb-idl.at
index d2c1ea6f3aaa..d28dfc11e786 100644
--- a/tests/ovsdb-idl.at
+++ b/tests/ovsdb-idl.at
@@ -1183,6 +1183,7 @@ m4_define([OVSDB_CHECK_IDL_NOTIFY_PY],
 # This test uses the Python IDL implementation with ssl
 m4_define([OVSDB_CHECK_IDL_NOTIFY_SSL_PY],
   [AT_SETUP([$1 - SSL])
+   AT_SKIP_IF([test "$HAVE_OPENSSL" = no])
    AT_SKIP_IF([test $HAVE_PYTHON = no])
    $PYTHON -m OpenSSL.SSL
    SSL_PRESENT=$?
-- 
2.1.4



More information about the dev mailing list