tests: Fix return code to skip test

Fix the return code indicating that the test code be skipped.
We need to return 77.

Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
This commit is contained in:
Stefan Berger 2017-02-01 17:25:48 -05:00
parent 70ee833604
commit 4994a97e52

View File

@ -6,6 +6,6 @@ if [ ! -c /dev/vtpmx ]; then
modprobe tpm_vtpm_proxy
if [ $? -ne 0 ]; then
echo "Skipping test using vtpm proxy module"
exit 44
exit 77
fi
fi