android_external_toybox/scripts/test.sh
Rob Landley 959bf34619 Test suite update.
Reorder functions to group helpers and API, eliminate SKIPNEXT and make
SKIP a count (with optional setting it to 99999), fix txpect to actually
listen to exit codes (wait needs PID else rc always 0), allow multiple X
from txpect (since shxpect adds an X0 at end which could be duplicate),
simplify some stuff, adjust tests for new SKIP + txpect X semantics
2022-09-03 07:00:36 -05:00

68 lines
1.4 KiB
Bash
Executable File

#!/bin/bash
source scripts/runtest.sh
source scripts/portability.sh
TOPDIR="$PWD"
export FILES="$PWD"/tests/files
trap 'kill $(jobs -p) 2>/dev/null; exit 1' INT
rm -rf generated/testdir
mkdir -p generated/testdir/testdir
if [ -z "$TEST_HOST" ]
then
if [ $# -ne 0 ]
then
PREFIX=generated/testdir/ scripts/single.sh "$@" || exit 1
else
make install_flat PREFIX=generated/testdir || exit 1
fi
fi
cd generated/testdir
PATH="$PWD:$PATH"
TESTDIR="$PWD"
export LC_COLLATE=C
[ -f "$TOPDIR/generated/config.h" ] &&
export OPTIONFLAGS=:$($SED -nr 's/^#define CFG_(.*) 1$/\1/p' "$TOPDIR/generated/config.h" | tr '\n' :)
do_test()
{
cd "$TESTDIR" && rm -rf testdir continue && mkdir testdir && cd testdir ||
exit 1
CMDNAME="${1##*/}"
CMDNAME="${CMDNAME%.test}"
if [ -z "$TEST_HOST" ]
then
C="$TESTDIR/$CMDNAME"
[ ! -e "$C" ] && echo "$SHOWSKIP: $CMDNAME disabled" && return
C="$(dirname $(realpath "$C"))/$CMDNAME"
else
C="$(which $CMDNAME 2>/dev/null)"
[ -z "$C" ] && printf '%s\n' "$SHOWSKIP: no $CMDNAME" && return
fi
(. "$1"; cd "$TESTDIR"; echo "$FAILCOUNT" > continue)
cd "$TESTDIR"
[ -e continue ] && FAILCOUNT=$(($(cat continue)+$FAILCOUNT)) || exit 1
}
if [ $# -ne 0 ]
then
for i in "$@"
do
do_test "$TOPDIR"/tests/$i.test
done
else
for i in "$TOPDIR"/tests/*.test
do
[ -z "$TEST_ALL" ] && [ ! -x "$i" ] && continue
do_test "$i"
done
fi
[ $FAILCOUNT -eq 0 ]