1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: libraft: Disable test that requires connectivity.

* gnu/packages/cluster.scm (libraft): remove test_uv_tcp_connect.c

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Brian Cully
2023-04-15 09:54:27 -04:00
committed by Ludovic Courtès
parent 2870fd77ea
commit f16a99df2e

View File

@@ -215,7 +215,8 @@ independently or together to provide resilient infrastructures.")
(add-after 'unpack 'disable-failing-tests
(lambda _
(substitute* "Makefile.am"
((".*test_uv_append.c.*") ""))
((".*test_uv_append.c.*") "")
((".*test_uv_tcp_connect.c.*") ""))
#t)))))
(inputs
(list libuv lz4))