tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
raft-canonical: ignore broken test
Michal Sojka
3 years ago
b693f928
2a93ea17
+8
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
raft-canonical
default.nix
+8
pkgs/development/libraries/raft-canonical/default.nix
reviewed
···
16
16
17
17
enableParallelBuilding = true;
18
18
19
19
+
# Ignore broken test, likely not causing huge breakage
20
20
+
# (https://github.com/canonical/raft/issues/292)
21
21
+
postPatch = ''
22
22
+
substituteInPlace test/integration/test_uv_tcp_connect.c --replace \
23
23
+
"TEST(tcp_connect, closeDuringHandshake, setUp, tearDownDeps, 0, NULL)" \
24
24
+
"TEST(tcp_connect, closeDuringHandshake, setUp, tearDownDeps, MUNIT_TEST_OPTION_TODO, NULL)"
25
25
+
'';
26
26
+
19
27
preConfigure = ''
20
28
substituteInPlace configure --replace /usr/bin/ " "
21
29
'';