From c494a30d4573178a23f29cf0c0f13e57ea75cf74 Mon Sep 17 00:00:00 2001 From: Nathan Johnson Date: Mon, 29 Feb 2016 05:35:10 -0600 Subject: testing/libcouchbase: update for docker image Added small patch to make unit tests complete under docker image. Relaxed makedepends to remove openjdk8-jre-base, skip running expensive couchbase mock tests (which required java in the first place). Bumped revision number. --- testing/libcouchbase/fix_socktest.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 testing/libcouchbase/fix_socktest.patch (limited to 'testing/libcouchbase/fix_socktest.patch') diff --git a/testing/libcouchbase/fix_socktest.patch b/testing/libcouchbase/fix_socktest.patch new file mode 100644 index 0000000000..2ee7cc68b0 --- /dev/null +++ b/testing/libcouchbase/fix_socktest.patch @@ -0,0 +1,11 @@ +--- libcouchbase-2.5.6/tests/socktests/t_basic.cc ++++ libcouchbase-2.5.6-2/tests/socktests/t_basic.cc +@@ -48,7 +49,7 @@ + + static bool isRefused(lcbio_OSERR err) + { +- if (err == ECONNREFUSED || err == ECONNABORTED) { ++ if (err == ECONNREFUSED || err == ECONNABORTED || err == EAFNOSUPPORT) { + return true; + } + #ifdef _WIN32 -- cgit v1.2.3