diff options
author | Pádraig Brady <P@draigBrady.com> | 2016-12-20 13:07:07 +0000 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2016-12-20 13:07:07 +0000 |
commit | 94d2c6848b17b4e14235e80e6fa6af37aa76217b (patch) | |
tree | edf0e634e9ae85497d867dff0a97daa597c99f0e /tests | |
parent | 9944e4763bb178852727812e8b188540772384e2 (diff) | |
download | coreutils-94d2c6848b17b4e14235e80e6fa6af37aa76217b.tar.xz |
maint: correct the version for the previous bug fix
While st_size would have been incorrect for subsequent
files since v7.1, it was only used since v8.24.
* tests/misc/wc-files0.sh: s/7.1/8.24/
* NEWS: Likewise.
Reported by Bernhard Voelker
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/misc/wc-files0.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/misc/wc-files0.sh b/tests/misc/wc-files0.sh index d92a01032..6565c5b16 100755 --- a/tests/misc/wc-files0.sh +++ b/tests/misc/wc-files0.sh @@ -48,7 +48,7 @@ printf '%s\0' "$nlname" | wc --files0-from=- > out || fail=1 printf '%s\n' "0 0 0 '1'$'\\n''2'" > exp || framework_failure_ compare exp out || fail=1 -# Ensure correct byte counts, which fails between v7.1 and v8.26 inclusive +# Ensure correct byte counts, which fails between v8.24 and v8.26 inclusive truncate -s1G wc.big || framework_failure_ touch wc.small || framework_failure_ printf '%s\0' wc.big wc.small | wc -c --files0-from=- >out || fail=1 |