This commit is contained in:
Michał Trojnara 2019-07-20 13:53:50 +02:00
parent 00290bc363
commit 1121713d48

View File

@ -41,7 +41,7 @@ modify_blob() {
then then
result=$? result=$?
cat "verify.log" >> "results.log" cat "verify.log" >> "results.log"
printf "Faild: verify error or non-unique message digests were found\n" printf "Failed: verify error or non-unique message digests were found\n"
else else
rm -f "test_$1_modifed.$2" rm -f "test_$1_modifed.$2"
fi fi
@ -77,7 +77,7 @@ verify_signature() {
! xxd -p -c 1000 "test_$2.$3" | grep "$searched_text" 2>> /dev/null 1>&2 ! xxd -p -c 1000 "test_$2.$3" | grep "$searched_text" 2>> /dev/null 1>&2
then then
result=1 result=1
printf "Faild: $7 not found\n" printf "Failed: $7 not found\n"
elif [ "$4" = "MODIFY" ] elif [ "$4" = "MODIFY" ]
then then
if [ "$3" != "ex_" ] if [ "$3" != "ex_" ]
@ -91,11 +91,11 @@ verify_signature() {
if [ "$result" -eq 0 ] && [ "$8" != "UNUSED_PATTERN" ] && ! grep -q "$8" "verify.log" if [ "$result" -eq 0 ] && [ "$8" != "UNUSED_PATTERN" ] && ! grep -q "$8" "verify.log"
then then
result=1 result=1
printf "Faild: $8 not found\n" printf "Failed: $8 not found\n"
fi fi
if [ "$result" -eq 0 ] && [ "$2" = "401" ] if [ "$result" -eq 0 ] && [ "$2" = "401" ]
then then
printf "Faild: unhashed file metadata was found\n" printf "Failed: unhashed file metadata was found\n"
result=1 result=1
fi fi
if [ "$result" -eq 0 ] if [ "$result" -eq 0 ]
@ -136,7 +136,7 @@ verify_no_signature() {
else else
result=1 result=1
cat "verify.log" >> "results.log" cat "verify.log" >> "results.log"
printf "Faild: verify error or the signature was found\n" printf "Failed: verify error or the signature was found\n"
fi fi
else else
result=1 result=1