about summary refs log tree commit diff
path: root/tests/hash.sh
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2005-03-23T17·13+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2005-03-23T17·13+0000
commit590e5a0d654c2ba85839978eb4ee69e5a4678e6a (patch)
tree2500b7d535265a01763fc4d1e14fbfac4277148c /tests/hash.sh
parent0df9f08078e0588b3bb699465263aa3b80deb771 (diff)
* Add a test for base-32 encoding of hashes since it seems to be
  broken on Mac OS X.

Diffstat (limited to 'tests/hash.sh')
-rw-r--r--tests/hash.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/hash.sh b/tests/hash.sh
index f06262120c..848a36c6b8 100644
--- a/tests/hash.sh
+++ b/tests/hash.sh
@@ -1,6 +1,6 @@
 try () {
     echo -n "$2" > $TEST_ROOT/vector
-    hash=$($TOP/src/nix-hash/nix-hash --flat --type "$1" $TEST_ROOT/vector)
+    hash=$($TOP/src/nix-hash/nix-hash $EXTRA --flat --type "$1" $TEST_ROOT/vector)
     if test "$hash" != "$3"; then
         echo "hash $1, expected $3, got $hash"
         exit 1
@@ -21,6 +21,9 @@ try sha1 "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq" "84983e441c3
 try sha256 "abc" "ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad"
 try sha256 "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq" "248d6a61d20638b8e5c026930c3e6039a33ce45964ff2167f6ecedd419db06c1"
 
+EXTRA=--base32
+try sha256 "abc" "1b8m03r63zqhnjf7l5wnldhh7c134ap5vpj0850ymkq1iyzicy5s"
+EXTRA=
 
 try2 () {
     hash=$($TOP/src/nix-hash/nix-hash --type "$1" $TEST_ROOT/hash-path)