Extended example

This commit is contained in:
Michael Boelen 2016-08-13 10:48:35 +02:00
parent d5a5cc3173
commit 075a69e125
1 changed files with 5 additions and 3 deletions

View File

@ -111,9 +111,11 @@
# Test : CUST-0040
# Description : Our second test, with a prequisite test
# First check if OPENSSLBINARY is known as a prerequisite for this test.
if [ ! "${OPENSSLBINARY}" = "" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
Register --test-no CUST-0040 --preqs-met ${PREQS_MET} --weight M --network NO --category security --description "Description of custom test"
# First check if OPENSSLBINARY is known as a prerequisite for this test
# ! means "not". So if the binary is known, the prerequisite is matched. Otherwise we set it to NO and define a reason why we skipped this test
if [ ! "${OPENSSLBINARY}" = "" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; SKIPREASON="No OpenSSL binary found"; fi
Register --test-no CUST-0040 --preqs-met ${PREQS_MET} --skip-reason "${SKIPREASON}" --weight M --network NO --category security --description "Description of custom test"
if [ ${SKIPTEST} -eq 0 ]; then
# Set variable to zero, to indicate that we have no problems found (yet)
FOUNDPROBLEM=0