mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-04 08:24:42 +01:00
parser: Make equality test output look like minimize test output
Subtle change to remove the "..." between the test description and result and also to single-space the output. This brings the output in line with what minimize.sh outputs, which is the test that runs just before equality.sh. Signed-off-by: Tyler Hicks <tyhicks@canonical.com> Acked-by: John Johansen <john.johansen@canonical.com>
This commit is contained in:
parent
b9b1f7efe7
commit
9c1890fe13
1 changed files with 2 additions and 2 deletions
|
@ -49,7 +49,7 @@ verify_binary_equality()
|
|||
shift
|
||||
shift
|
||||
|
||||
printf "Binary equality %s ..." "$desc"
|
||||
printf "Binary equality %s" "$desc"
|
||||
good_hash=$(hash_binary_policy "$good_profile")
|
||||
if [ $? -ne 0 ]
|
||||
then
|
||||
|
@ -80,7 +80,7 @@ verify_binary_equality()
|
|||
|
||||
if [ $ret -eq 0 ]
|
||||
then
|
||||
printf " ok\n\n"
|
||||
printf " ok\n"
|
||||
fi
|
||||
|
||||
return $ret
|
||||
|
|
Loading…
Add table
Reference in a new issue