keydb: skip flaky "Active defrag edge case" test (#353417)

authored by

Atemu and committed by
GitHub
3321862a ed9e8820

+17 -6
+17 -6
pkgs/by-name/ke/keydb/package.nix
··· 84 84 85 85 patchShebangs ./utils/gen-test-certs.sh 86 86 ${if tlsSupport then "./utils/gen-test-certs.sh" else ""} 87 - 88 - ./runtest \ 89 - --no-latency \ 90 - --timeout 2000 \ 91 - --clients $NIX_BUILD_CORES \ 92 - --tags -leaks ${if tlsSupport then "--tls" else ""} 87 + ./runtest --clients $NIX_BUILD_CORES ${ 88 + lib.escapeShellArgs ( 89 + [ 90 + "--no-latency" 91 + "--timeout" 92 + "2000" 93 + "--tags" 94 + "-leaks" 95 + ] 96 + ++ lib.optional tlsSupport "--tls" 97 + # skips flaky test on x86_64 98 + ++ lib.optionals stdenv.hostPlatform.isx86_64 [ 99 + "--skiptest" 100 + "Active defrag edge case" 101 + ] 102 + ) 103 + } 93 104 94 105 runHook postCheck 95 106 '';