Fixing a test.
This commit is contained in:
parent
3ab7be7d41
commit
249a487d49
1 changed files with 9 additions and 7 deletions
|
@ -132,13 +132,15 @@ inline_doc
|
||||||
RUNMAKE) validation_str="x0x x1x"; validate_str; continue ;;
|
RUNMAKE) validation_str="x0x x1x"; validate_str; continue ;;
|
||||||
TEST) validation_str="x0x x1x x2x x3x"; validate_str; continue ;;
|
TEST) validation_str="x0x x1x x2x x3x"; validate_str; continue ;;
|
||||||
REPORT) validation_str="x0x x1x"; validate_str;
|
REPORT) validation_str="x0x x1x"; validate_str;
|
||||||
if [[ "${!config_param}" = "1" ]] && [[ `type -p bc` ]]; then
|
if [[ "${!config_param}" = "1" ]]; then
|
||||||
continue
|
if [[ `type -p bc` ]]; then
|
||||||
else
|
continue
|
||||||
echo -e " ${BOLD}The bc binary was not found${OFF}"
|
else
|
||||||
echo -e " The SBU and disk usage report creation will be skiped"
|
echo -e " ${BOLD}The bc binary was not found${OFF}"
|
||||||
REPORT=0
|
echo -e " The SBU and disk usage report creation will be skiped"
|
||||||
continue
|
REPORT=0
|
||||||
|
continue
|
||||||
|
fi
|
||||||
fi ;;
|
fi ;;
|
||||||
STRIP) validation_str="x0x x1x"; validate_str; continue ;;
|
STRIP) validation_str="x0x x1x"; validate_str; continue ;;
|
||||||
VIMLANG) validation_str="x0x x1x"; validate_str; continue ;;
|
VIMLANG) validation_str="x0x x1x"; validate_str; continue ;;
|
||||||
|
|
Reference in a new issue