Further improvements to releng test template

This commit is contained in:
Thomas Schmitt 2011-08-04 11:51:47 +00:00
parent be0d049ec5
commit 121b69159a
1 changed files with 15 additions and 5 deletions

View File

@ -27,8 +27,20 @@
set -e
# === TEMPLATE: Describe your own specific options (if any) and the test
print_specific_help() {
cat << HLP
Specific options:
--option Explanation of specific option
Overview:
Short explanation of test purpose and activities.
HLP
}
getopts_inc=inc/releng_getopts.inc
test -e ./inc/releng_getopts.inc
if test -e "$getopts_inc"
then
. "$getopts_inc"
@ -46,10 +58,6 @@ else
exit 29
fi
# Include common bits and interpret standard options
# as listed by function print_help
. inc/releng_getopts.inc
# === TEMPLATE: Decide whether the test will have own options,
# === TEMPLATE: apart from those interpreted by inc/releng_getopts.inc
@ -121,5 +129,7 @@ fi
# === TEMPLATE: 30 = Unexpected state of own directory for self generated files
# === TEMPLATE: 29 = Not in ./releng directory or missing essential parts
# === TEMPLATE: 1 to 28 = test specific exit values
# === TEMPLATE: When exiting prematurely, make sure to call cleanup.
cleanup
exit 0