From: Theodore Ts'o Date: Tue, 4 Jan 2022 03:45:37 +0000 (-0500) Subject: tests: support older versions of timeout in r_corrupt_fs X-Git-Tag: v1.46.6-rc1~68 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=8535250a8;p=tools%2Fe2fsprogs.git tests: support older versions of timeout in r_corrupt_fs Older versions of the timeout program in coreutils don't support the -v option. (This is apparently still in use in the GNU/FreeBSD Debain port since coreutils hasn't built successfully since Coreutils version 8.28.) Signed-off-by: Theodore Ts'o --- diff --git a/tests/r_corrupt_fs/script b/tests/r_corrupt_fs/script index 08af91e..f6d3a89 100644 --- a/tests/r_corrupt_fs/script +++ b/tests/r_corrupt_fs/script @@ -17,7 +17,7 @@ $MKE2FS -q -F -t ext4 -o Linux -b 1024 $TMPFILE 32M >> $OUT.new 2>&1 echo debugfs -w -R \"set_bg 1 free_blocks_count 65536\" /tmp/foo.img >> $OUT.new $DEBUGFS -w -R "set_bg 1 free_blocks_count 65536" $TMPFILE > /dev/null 2>&1 -if type timeout > /dev/null 2>&1 ; then +if timeout -v 1s true > /dev/null 2>&1 ; then TIMEOUT="timeout -v 30s" else TIMEOUT=