nixVersions.nix_2_10: add patch for flaky tests

This commit is contained in:
Nick Cao 2022-07-14 09:34:07 +08:00
parent 18c07ad150
commit f08a2bd566
No known key found for this signature in database
GPG key ID: 068A56CEF48FA2C1
2 changed files with 13 additions and 0 deletions

View file

@ -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;

View 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)"