summaryrefslogtreecommitdiff
path: root/tests/misc/sha1sum.pl
diff options
context:
space:
mode:
authorPádraig Brady <P@draigBrady.com>2015-11-01 18:48:22 +0000
committerPádraig Brady <P@draigBrady.com>2015-11-04 02:03:43 +0000
commit646902b30dee04b9454fdcaa8a30fd89fc0514ca (patch)
tree50241e5b349a1de2a7094d8ffcd900de0458c655 /tests/misc/sha1sum.pl
parentab40a941a07d80326aaa051e3c94c88b800cbd7d (diff)
downloadcoreutils-646902b30dee04b9454fdcaa8a30fd89fc0514ca.tar.xz
md5sum: ensure a single status line per file
* src/md5sum.c: Use the same file name escaping method used when generating and checking checksums. I.E. ensure a single line per file by starting the line with '\' for any file name containing '\n' and replacing those with "\\n". * NEWS: Move the item from changes in behavior to improvements, since this is no longer a backwards incompat change when processing stdout status messages. * tests/misc/md5sum.pl: Remove quotes from expected status output. * tests/misc/sha1sum.pl: Likewise.
Diffstat (limited to 'tests/misc/sha1sum.pl')
-rwxr-xr-xtests/misc/sha1sum.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/misc/sha1sum.pl b/tests/misc/sha1sum.pl
index 0c22e7a18..b58a7f4a1 100755
--- a/tests/misc/sha1sum.pl
+++ b/tests/misc/sha1sum.pl
@@ -58,7 +58,7 @@ my @Tests =
{EXIT=> 1}],
['check-bsd2', '--check',
{IN=> {'f.sha1' => "SHA1 (f) = $sha_degenerate\n"}},
- {AUX=> {f=> ''}}, {OUT=>"'f': OK\n"}],
+ {AUX=> {f=> ''}}, {OUT=>"f: OK\n"}],
['check-bsd3', '--check', '--status',
{IN=> {'f.sha1' => "SHA1 (f) = $sha_degenerate\n"}},
{AUX=> {f=> 'bar'}}, {EXIT=> 1}],
@@ -70,7 +70,7 @@ my @Tests =
{EXIT=> 1}],
['check-openssl2', '--check',
{IN=> {'f.sha1' => "SHA1(f)= $sha_degenerate\n"}},
- {AUX=> {f=> ''}}, {OUT=>"'f': OK\n"}],
+ {AUX=> {f=> ''}}, {OUT=>"f: OK\n"}],
['check-openssl3', '--check', '--status',
{IN=> {'f.sha1' => "SHA1(f)= $sha_degenerate\n"}},
{AUX=> {f=> 'bar'}}, {EXIT=> 1}],