diff options
author | zimoun <zimon.toutoune@gmail.com> | 2021-11-18 01:20:21 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-12-17 17:29:34 +0100 |
commit | 6e08f07f2032cd85cd67beadf7a91b5c26d0619d (patch) | |
tree | 4592e1b37ec9c16f068fd7cdaf3c3197a75086c1 /tests/guix-hash.sh | |
parent | 155fc235b5e1b41b4665c782365dd2bf11beae9c (diff) | |
download | guix-6e08f07f2032cd85cd67beadf7a91b5c26d0619d.tar.gz |
guix hash: Support several files.
* guix/scripts/hash.scm (guix-hash): Allow several files. [file-hash]: Catch system-error. [formatted-hash]: New procedure. * tests/guix-hash.sh: Add test. * doc/guix.texi (Invoking guix hash): Mention "one or more files". Co-authored-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'tests/guix-hash.sh')
-rw-r--r-- | tests/guix-hash.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/guix-hash.sh b/tests/guix-hash.sh index c4461fa955..1e9a0ec734 100644 --- a/tests/guix-hash.sh +++ b/tests/guix-hash.sh @@ -34,6 +34,12 @@ test `guix hash -f base32 /dev/null` = 4oymiquy7qobjgx36tejs35zeqt24qpemsnzgtfes test `guix hash -H sha512 -f hex /dev/null` = cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e test `guix hash -H sha1 -f base64 /dev/null` = "2jmj7l5rSw0yVb/vlWAYkK/YBwk=" +# Several files. +test "`guix hash /dev/null "$abs_top_srcdir/README"`" = "`guix hash /dev/null ; guix hash "$abs_top_srcdir/README"`" + +# Zero files. +! guix hash + ! guix hash -H abcd1234 /dev/null mkdir "$tmpdir" |