Remove obsolete comments in test.sh

This commit is contained in:
Travis Burtrum 2019-12-30 01:01:29 -05:00
parent 3f85f69492
commit f4d68fdb9e
1 changed files with 2 additions and 3 deletions

View File

@ -55,10 +55,9 @@ test () {
"$bin" -e "$key" -N 2000000 -i "$dummy_file" >/dev/null && echo "ERROR: N of 2 million without extra memory worked" && exit 1
"$bin_decrypt" -d "$key" -N 2000000 -i "$dummy_file" >/dev/null && echo "ERROR: N of 2 million without extra memory worked" && exit 1
# todo: can we also make this the case for stdout? needs some buffering...
echo 'bad decryption should result in output file being deleted'
echo 'bad decryption bytes are never output, file should be 0 bytes'
echo 'hopefully this doesnt make it to disk' | "$bin" "$key" | cat - <(echo -n a) | "$bin_decrypt" -d "$key" -o bla.txt && exit 1
[ -s bla.txt ] && echo "ERROR: bla.txt should not exist" && exit 1
[ -s bla.txt ] && echo "ERROR: bla.txt should be empty" && exit 1
set -e
}