diff options
author | Pierre Labastie <pierre.labastie@neuf.fr> | 2022-06-15 15:09:49 +0200 |
---|---|---|
committer | Pierre Labastie <pierre.labastie@neuf.fr> | 2022-06-15 15:09:49 +0200 |
commit | 29615d9e3a6a239a32c78839b35921751e185466 (patch) | |
tree | 9400b7d8c2ad6e1a72a840dc8067d24ba1de63d3 /common | |
parent | 316d06039f2e6c7ebaca0258bafb422daa9426d2 (diff) |
Remove the "Abort on testsuite failure" config (3)
Remove the display of BOMB_TEST when validating the config.
Diffstat (limited to 'common')
-rw-r--r-- | common/libs/func_validate_configs.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/common/libs/func_validate_configs.sh b/common/libs/func_validate_configs.sh index 588cd8f62c..b14cf8162e 100644 --- a/common/libs/func_validate_configs.sh +++ b/common/libs/func_validate_configs.sh @@ -20,7 +20,7 @@ inline_doc local -r GENERAL_common="LUSER LGROUP LHOME BUILDDIR CLEAN GETPKG SRC_ARCHIVE \ SERVER RETRYSRCDOWNLOAD RETRYDOWNLOADCNT DOWNLOADTIMEOUT \ RUNMAKE" - local -r BUILD_chroot="TEST BOMB_TEST STRIP" + local -r BUILD_chroot="TEST STRIP" local -r BUILD_common="FSTAB CONFIG TIMEZONE PAGE LANG INSTALL_LOG" local -r ADVANCED_chroot="COMPARE RUN_ICA ITERATIONS OPTIMIZE" local -r ADVANCED_common="REPORT REBUILD_MAKEFILE" @@ -127,7 +127,6 @@ inline_doc COMPARE) [[ ! "$COMPARE" = "y" ]] && echo -e "`eval echo $PARAM_VALS`" ;; RUN_ICA) [[ "$COMPARE" = "y" ]] && echo -e "`eval echo $PARAM_VALS`" ;; ITERATIONS) [[ "$COMPARE" = "y" ]] && echo -e "`eval echo $PARAM_VALS`" ;; - BOMB_TEST) [[ ! "$TEST" = "0" ]] && echo -e "`eval echo $PARAM_VALS`" ;; TARGET32) [[ -n "${TARGET32}" ]] && echo -e "`eval echo $PARAM_VALS`" ;; MIPS_LEVEL) [[ "${ARCH}" = "mips" ]] && echo -e "`eval echo $PARAM_VALS`" ;; SERVER) [[ "$GETPKG" = "y" ]] && echo -e "`eval echo $PARAM_VALS`" ;; |