50 lines
1.0 KiB
Bash
Executable File
50 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright 2011 George Danchev <danchev@spnet.net>
|
|
# Licensed under GNU GPL version 2 or later
|
|
|
|
set -e
|
|
|
|
not_in_releng_exit() {
|
|
printf "\nPlease execute the tests from releng directory.\n\n"
|
|
exit 1
|
|
}
|
|
|
|
print_specific_help() {
|
|
cat << HLP
|
|
Specific options:
|
|
none yet.
|
|
Overview:
|
|
template.
|
|
HLP
|
|
}
|
|
|
|
# Include common bits
|
|
. inc/releng_getopts.inc || not_in_releng_exit
|
|
|
|
#
|
|
if test "$SPECIFIC_HELP" = 1; then
|
|
print_specific_help
|
|
exit 0
|
|
fi
|
|
|
|
# Each test should decide whether or not it needs
|
|
# a xorriso binary to test, since some do compilations only.
|
|
if [ ! -x $RELENG_XORRISO ]; then
|
|
print_help
|
|
printf "\n${SELF}: -x absolute or relative path to binary to be run.\n\n"
|
|
exit 31
|
|
fi
|
|
|
|
# check data dir, if any and after checking -x xorriso
|
|
if [ -d "${GEN_DATA_DIR}" ]; then
|
|
printf "\n${SELF}: directory %s exists!" ${GEN_DATA_DIR}
|
|
printf "\n${SELF}: use '${SELF} -c' to remove.\n"
|
|
exit 8
|
|
else
|
|
mkdir "${GEN_DATA_DIR}"
|
|
fi
|
|
|
|
#####################################################################
|
|
exit 1
|