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:
Tyler Hicks 2014-01-12 22:38:10 -06:00
parent b9b1f7efe7
commit 9c1890fe13

View file

@ -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