test-lib: add BUSYBOX prerequisite

When running with BusyBox, we will want to avoid calling executables on
the PATH that are implemented in BusyBox itself.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
This commit is contained in:
Johannes Schindelin 2017-07-19 17:07:56 +02:00
Родитель 0cbc48f7a0
Коммит 45216ee310
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -1896,6 +1896,10 @@ test_lazy_prereq UNZIP '
test $? -ne 127
'
test_lazy_prereq BUSYBOX '
case "$($SHELL --help 2>&1)" in *BusyBox*) true;; *) false;; esac
'
run_with_limited_cmdline () {
(ulimit -s 128 && "$@")
}