Skip to content

Commit 2d3d9f4

Browse files
author
Saterfield990
committed
redis: disable aarch64-linux failing test
1 parent 6c39351 commit 2d3d9f4

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

pkgs/by-name/re/redis/package.nix

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@ stdenv.mkDerivation (finalAttrs: {
8686
substituteInPlace tests/support/server.tcl \
8787
--replace-fail 'exec /usr/bin/env' 'exec env'
8888
89-
sed -i -e '/^proc wait_load_handlers_disconnected/{n ; s/wait_for_condition 50 100/wait_for_condition 50 500/; }' \
89+
sed -i \
90+
-e '/^proc wait_load_handlers_disconnected/{n ; s/wait_for_condition 50 100/wait_for_condition 50 500/; }' \
9091
-e '/^proc wait_for_ofs_sync/{n ; s/wait_for_condition 50 100/wait_for_condition 50 500/; }' \
9192
tests/support/util.tcl
9293
@@ -96,7 +97,10 @@ stdenv.mkDerivation (finalAttrs: {
9697
--clients $NIX_BUILD_CORES \
9798
--tags -leaks \
9899
--skipunit integration/aof-multi-part \
99-
--skipunit integration/failover # flaky and slow
100+
--skipunit integration/failover \
101+
${lib.optionalString (
102+
stdenv.hostPlatform.system == "aarch64-linux"
103+
) "--skipunit integration/replication-rdbchannel"}
100104
101105
runHook postCheck
102106
'';

0 commit comments

Comments
 (0)