Blame SOURCES/0001-tests-support-older-versions-of-timeout-in-r_corrupt.patch

1d23b8
From af09db229f74f447aec12e440252d8a94c049f26 Mon Sep 17 00:00:00 2001
1d23b8
From: Theodore Ts'o <tytso@mit.edu>
1d23b8
Date: Mon, 3 Jan 2022 22:45:37 -0500
1d23b8
Subject: [PATCH] tests: support older versions of timeout in r_corrupt_fs
1d23b8
1d23b8
Older versions of the timeout program in coreutils don't support the
1d23b8
-v option.  (This is apparently still in use in the GNU/FreeBSD Debain
1d23b8
port since coreutils hasn't built successfully since Coreutils version
1d23b8
8.28.)
1d23b8
1d23b8
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
1d23b8
---
1d23b8
 tests/r_corrupt_fs/script | 2 +-
1d23b8
 1 file changed, 1 insertion(+), 1 deletion(-)
1d23b8
1d23b8
diff --git a/tests/r_corrupt_fs/script b/tests/r_corrupt_fs/script
1d23b8
index 08af91ed..f6d3a89d 100644
1d23b8
--- a/tests/r_corrupt_fs/script
1d23b8
+++ b/tests/r_corrupt_fs/script
1d23b8
@@ -17,7 +17,7 @@ $MKE2FS -q -F -t ext4 -o Linux -b 1024 $TMPFILE 32M >> $OUT.new 2>&1
1d23b8
 echo debugfs -w -R \"set_bg 1 free_blocks_count 65536\" /tmp/foo.img >> $OUT.new
1d23b8
 $DEBUGFS -w -R "set_bg 1 free_blocks_count 65536" $TMPFILE > /dev/null 2>&1
1d23b8
 
1d23b8
-if type timeout > /dev/null 2>&1 ; then
1d23b8
+if timeout -v 1s true > /dev/null 2>&1 ; then
1d23b8
    TIMEOUT="timeout -v 30s"
1d23b8
 else
1d23b8
    TIMEOUT=
1d23b8
-- 
1d23b8
2.34.1
1d23b8