summaryrefslogtreecommitdiff
path: root/system/coreutils/test-tee-avoid-eintr.patch
diff options
context:
space:
mode:
authorZach van Rijn <me@zv.io>2023-09-18 17:36:33 +0000
committerZach van Rijn <me@zv.io>2023-09-18 17:36:33 +0000
commitcf682e9d505acf791a27e255884c0eb9d29f92d4 (patch)
tree69e8b76f8175f9925ea5201df78371fc49d16ee9 /system/coreutils/test-tee-avoid-eintr.patch
parent7a30d67a3a456bd33eb27e4fb82bf9477467e3e9 (diff)
downloadpackages-cf682e9d505acf791a27e255884c0eb9d29f92d4.tar.gz
packages-cf682e9d505acf791a27e255884c0eb9d29f92d4.tar.bz2
packages-cf682e9d505acf791a27e255884c0eb9d29f92d4.tar.xz
packages-cf682e9d505acf791a27e255884c0eb9d29f92d4.zip
system/coreutils: bump { 9.2 --> 9.4 }. fixes #1043.
Diffstat (limited to 'system/coreutils/test-tee-avoid-eintr.patch')
-rw-r--r--system/coreutils/test-tee-avoid-eintr.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/system/coreutils/test-tee-avoid-eintr.patch b/system/coreutils/test-tee-avoid-eintr.patch
deleted file mode 100644
index c513486f7..000000000
--- a/system/coreutils/test-tee-avoid-eintr.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Upstream report: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=62542
-
-diff --git a/tests/misc/tee.sh b/tests/misc/tee.sh
-index 0b97a9ea3..444cb688a 100755
---- a/tests/misc/tee.sh
-+++ b/tests/misc/tee.sh
-@@ -99,7 +99,7 @@ dd count=20 bs=100K if=/dev/zero status=none |
- dd count=0 oflag=nonblock status=none
- tee || { cleanup_; touch tee.fail; }
- } >fifo
--test -f tee.fail && fail=1
-+test -f tee.fail && fail=1 || cleanup_
-
- # Ensure tee honors --output-error modes
- read_fifo() { timeout 10 dd count=1 if=fifo of=/dev/null status=none & }