From 4994a97e529dd67f87545926d3ab114c648e20d7 Mon Sep 17 00:00:00 2001 From: Stefan Berger Date: Wed, 1 Feb 2017 17:25:48 -0500 Subject: [PATCH] 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 --- tests/load_vtpm_proxy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/load_vtpm_proxy b/tests/load_vtpm_proxy index 7a28b16..d751e5b 100644 --- a/tests/load_vtpm_proxy +++ b/tests/load_vtpm_proxy @@ -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