diff options
Diffstat (limited to 'checks/clearsig.test')
-rwxr-xr-x | checks/clearsig.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/checks/clearsig.test b/checks/clearsig.test index 6cb8c7aeb..75802cf79 100755 --- a/checks/clearsig.test +++ b/checks/clearsig.test @@ -12,8 +12,8 @@ # I know that this does not work for random data files (due to large lines # or what ever) - I hope we can live with it. for i in $plain_files; do - echo "$usrpass1" | run_gpg --passphrase-fd 0 -sat -o x --yes $i - run_gpg -o y --yes x + echo "$usrpass1" | ./run-gpg --passphrase-fd 0 -sat -o x --yes $i + ./run-gpg -o y --yes x ../tools/clean-sat < $i > z head -c $[ $(cat y | wc -c) - 1 ] y | diff - z || error "$i: mismatch" done |