diff --git a/tests/reattach-warning.sh b/tests/reattach-warning.sh index 51b8b0e..2b1f5ef 100755 --- a/tests/reattach-warning.sh +++ b/tests/reattach-warning.sh @@ -1,4 +1,8 @@ #!/bin/bash -e +## +# The original warning is gone because we now do multiple signatures +# instead check that the second signature is added +## signed="test.signed" sig="test.sig" @@ -7,4 +11,4 @@ sig="test.sig" cp "$image" "$signed" "$sbattach" --attach "$sig" "$signed" "$sbattach" --attach "$sig" "$signed" 2>&1 | - grep '^warning: overwriting' + grep '^Image was already signed; adding additional signature' diff --git a/tests/resign-warning.sh b/tests/resign-warning.sh index 71026b1..544fbf3 100755 --- a/tests/resign-warning.sh +++ b/tests/resign-warning.sh @@ -1,7 +1,11 @@ #!/bin/bash -e +## +# The original warning is gone because we now do multiple signatures +# instead check that the second signature is added +## signed="test.signed" "$sbsign" --cert "$cert" --key "$key" --output "$signed" "$image" "$sbsign" --cert "$cert" --key "$key" --output "$signed" "$signed" 2>&1 | - grep '^warning: overwriting' + grep '^Image was already signed; adding additional signature'