guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/06: gnu: knot: Fix test failure on aarch64-linux.


From: guix-commits
Subject: 03/06: gnu: knot: Fix test failure on aarch64-linux.
Date: Tue, 6 Oct 2020 10:28:05 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 4e869b180a94aa5bf5ae70ca48e0527e8e8db8db
Author: Simon South <simon@simonsouth.net>
AuthorDate: Tue Oct 6 09:56:45 2020 -0400

    gnu: knot: Fix test failure on aarch64-linux.
    
    * gnu/packages/dns.scm (knot)[source]: Apply patch from upstream that
    helps ensure the "test_net_shortwrite" test suite can complete
    regardless of platform or configuration.
    * gnu/packages/patches/knot-test_net_shortwrite-ensure-connection.patch:
    New file.
    * gnu/local.mk (dist_patch_DATA): Add it.
    
    Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
---
 gnu/local.mk                                          |  1 +
 gnu/packages/dns.scm                                  |  2 ++
 .../knot-test_net_shortwrite-ensure-connection.patch  | 19 +++++++++++++++++++
 3 files changed, 22 insertions(+)

diff --git a/gnu/local.mk b/gnu/local.mk
index 59cad38..83d2d72 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -1198,6 +1198,7 @@ dist_patch_DATA =                                         
\
   %D%/packages/patches/kpackage-allow-external-paths.patch     \
   %D%/packages/patches/kmplayer-aarch64.patch                  \
   %D%/packages/patches/kmplayer-upstream_Fix-build-with-Qt-5.9.patch   \
+  %D%/packages/patches/knot-test_net_shortwrite-ensure-connection.patch        
\
   %D%/packages/patches/kobodeluxe-paths.patch                  \
   %D%/packages/patches/kobodeluxe-enemies-pipe-decl.patch      \
   %D%/packages/patches/kobodeluxe-const-charp-conversion.patch \
diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm
index 8f7374c..0fe047a 100644
--- a/gnu/packages/dns.scm
+++ b/gnu/packages/dns.scm
@@ -816,6 +816,8 @@ Extensions} (DNSSEC).")
        (file-name (git-file-name name version))
        (sha256
         (base32 "0fkvip7n5ihjfwnnivdc3jf44y8p85ifglvq7b0anxvj9cg1m78f"))
+       (patches
+        (search-patches "knot-test_net_shortwrite-ensure-connection.patch"))
        (modules '((guix build utils)))
        (snippet
         '(begin
diff --git 
a/gnu/packages/patches/knot-test_net_shortwrite-ensure-connection.patch 
b/gnu/packages/patches/knot-test_net_shortwrite-ensure-connection.patch
new file mode 100644
index 0000000..8b57ec5
--- /dev/null
+++ b/gnu/packages/patches/knot-test_net_shortwrite-ensure-connection.patch
@@ -0,0 +1,19 @@
+This patch duplicates upstream commit 4144d1e, which helps ensure the
+"test_net_shortwrite" test suite can succeed across all platforms by
+deepening the pending-connection queue of the server it creates from 0
+to 1.
+
+See the original report at
+https://gitlab.nic.cz/knot/knot-dns/-/issues/693
+
+--- a/tests/contrib/test_net_shortwrite.c
++++ b/tests/contrib/test_net_shortwrite.c
+@@ -88,7 +88,7 @@ int main(int argc, char *argv[])
+       int server = net_bound_socket(SOCK_STREAM, &addr, 0);
+       ok(server >= 0, "server: bind socket");
+
+-      r = listen(server, 0);
++      r = listen(server, 1);
+       ok(r == 0, "server: start listening");
+
+       struct sockaddr *sa = (struct sockaddr *)&addr;



reply via email to

[Prev in Thread] Current Thread [Next in Thread]