diff options
author | Pádraig Brady <P@draigBrady.com> | 2011-09-16 11:47:35 +0100 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2011-09-16 19:09:26 +0100 |
commit | 7da844cc86e1209acbe820771b0e9a35fd89da3b (patch) | |
tree | 38035a065326d41abd6535306ff4aca7273d8c3a /tests | |
parent | b98e41cc74016d5f6b2f70847c126e737193a36b (diff) | |
download | coreutils-7da844cc86e1209acbe820771b0e9a35fd89da3b.tar.xz |
md5sum: handle BSD reversed format checksums
* src/md5sum.c (split_3): Detect and handle BSD reversed
format checksums.
* tests/misc/md5sum-bsd: Add a new test.
* tests/Makefile.am: Reference new test.
* NEWS: Mention the improvement
Suggested by Rimas Kudelis.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 1 | ||||
-rwxr-xr-x | tests/misc/md5sum-bsd | 41 |
2 files changed, 42 insertions, 0 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index b920abafc..eeb4cab2d 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -198,6 +198,7 @@ TESTS = \ misc/id-context \ misc/id-groups \ misc/md5sum \ + misc/md5sum-bsd \ misc/md5sum-newline \ misc/md5sum-parallel \ misc/mknod \ diff --git a/tests/misc/md5sum-bsd b/tests/misc/md5sum-bsd new file mode 100755 index 000000000..324530c86 --- /dev/null +++ b/tests/misc/md5sum-bsd @@ -0,0 +1,41 @@ +#!/bin/sh +# make sure `md5sum -c' works for alternate BSD format (md5 -r) + +# Copyright (C) 2011 Free Software Foundation, Inc. + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +. "${srcdir=.}/init.sh"; path_prepend_ ../src +print_ver_ md5sum + +# Note we start this list with a name +# that's unambiguous in BSD format. +# I.E. one not starting with ' ' or '*' +for i in 'a' ' b' '*c' 'dd' ' '; do + echo "$i" > "$i" + md5sum "$i" >> check.md5sum +done +sed 's/ / /' check.md5sum > check.md5 + +# Note only a single format is supported per run +md5sum --strict -c check.md5sum || fail=1 +md5sum --strict -c check.md5 || fail=1 + +# If we skip the first entry in the BSD format checksums +# then it'll be detected as standard format and error. +# This unlikely caveat was thought better than mandating +# an option to avoid the ambiguity. +tail -n+2 check.md5 | md5sum --strict -c && fail=1 + +Exit $fail |