diff options
Diffstat (limited to 'checks/sigs.test')
-rwxr-xr-x | checks/sigs.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/checks/sigs.test b/checks/sigs.test index 298c9b358..2446dde96 100755 --- a/checks/sigs.test +++ b/checks/sigs.test @@ -4,16 +4,16 @@ #info Checking signatures for i in $plain_files $data_files; do - echo "$usrpass1" | ./run-gpg --passphrase-fd 0 -s -o x --yes $i - ./run-gpg -o y --yes x + echo "$usrpass1" | $srcdir/run-gpg --passphrase-fd 0 -s -o x --yes $i + $srcdir/run-gpg -o y --yes x cmp $i y || error "$i: mismatch" done for da in ripemd160 sha1 md5 tiger; do for i in $plain_files; do - echo "$usrpass1" | ./run-gpg --passphrase-fd 0 --digest-algo $da \ + echo "$usrpass1" | $srcdir/run-gpg --passphrase-fd 0 --digest-algo $da \ -s -o x --yes $i - ./run-gpg -o y --yes x + $srcdir/run-gpg -o y --yes x cmp $i y || error "$i: mismatch" # process only the first one break |