The "ovn-nbctl - daemon ssl files change" test will hang forever if SSL is disabled. This commit fixes the issue by skipping the test if SSL is disabled.
Signed-off-by: Mark Michelson <[email protected]> --- tests/ovn-nbctl.at | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/ovn-nbctl.at b/tests/ovn-nbctl.at index aa5baade4..478a32f5a 100644 --- a/tests/ovn-nbctl.at +++ b/tests/ovn-nbctl.at @@ -2625,6 +2625,7 @@ OVN_NBCTL_TEST_STOP "/terminating with signal 15/d" AT_CLEANUP AT_SETUP([ovn-nbctl - daemon ssl files change]) +AT_SKIP_IF([test "$HAVE_OPENSSL" = no]) dnl Create ovn-nb database. AT_CHECK([ovsdb-tool create ovn-nb.db $abs_top_srcdir/ovn-nb.ovsschema]) -- 2.39.2 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
