X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=tests%2Ftest-vconn.c;h=0b2b06355f1e368bf71b2bccdfc81bfcfd3e4d9d;hb=dd445b79f7862580104c4c08edb9c65d42ad314c;hp=5dd38f0f881d78d298ceb0d041c325247de5ab97;hpb=48d84b1706f76882bc5265c09257e70899fb9c41;p=openvswitch diff --git a/tests/test-vconn.c b/tests/test-vconn.c index 5dd38f0f..0b2b0635 100644 --- a/tests/test-vconn.c +++ b/tests/test-vconn.c @@ -159,8 +159,15 @@ test_refuse_connection(int argc OVS_UNUSED, char *argv[]) ovs_fatal(0, "unexpected vconn_connect() return value %d (%s)", error, strerror(error)); } + } else if (!strcmp(type, "unix")) { + CHECK_ERRNO(error, EPIPE); + } else if (!strcmp(type, "ssl")) { + if (error != EPROTO && error != ECONNRESET) { + ovs_fatal(0, "unexpected vconn_connect() return value %d (%s)", + error, strerror(error)); + } } else { - CHECK_ERRNO(error, !strcmp(type, "unix") ? EPIPE : EPROTO); + ovs_fatal(0, "invalid connection type %s", type); } vconn_close(vconn);