mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
nixVersions.nix_2_10: add patch for flaky tests
This commit is contained in:
parent
18c07ad150
commit
f08a2bd566
2 changed files with 13 additions and 0 deletions
|
@ -94,6 +94,7 @@ in lib.makeExtensible (self: {
|
|||
nix_2_10 = common {
|
||||
version = "2.10.2";
|
||||
sha256 = "sha256-/8zlkXoZEZd+LgJq5xw8h+u2STqeKLrGTARZklE3CP8=";
|
||||
patches = [ ./patches/flaky-tests.patch ];
|
||||
};
|
||||
|
||||
stable = self.nix_2_9;
|
||||
|
|
12
pkgs/tools/package-management/nix/patches/flaky-tests.patch
Normal file
12
pkgs/tools/package-management/nix/patches/flaky-tests.patch
Normal file
|
@ -0,0 +1,12 @@
|
|||
diff --git a/mk/run_test.sh b/mk/run_test.sh
|
||||
index 7e95df2ac..58420c317 100755
|
||||
--- a/mk/run_test.sh
|
||||
+++ b/mk/run_test.sh
|
||||
@@ -27,7 +27,6 @@ run_test "$1"
|
||||
# appear randomly without anyone knowing why.
|
||||
# See https://github.com/NixOS/nix/issues/3605 for more info
|
||||
if [[ $status -ne 0 && $status -ne 99 && \
|
||||
- "$(uname)" == "Darwin" && \
|
||||
"$log" =~ "unexpected EOF reading a line" \
|
||||
]]; then
|
||||
echo "$post_run_msg [${yellow}FAIL$normal] (possibly flaky, so will be retried)"
|
Loading…
Reference in a new issue