tests: Let run_tests.sh run Python tests without Makefile assistance

Currently run_tests.sh needs the $PYTHON environment variable set to
correctly run pylibfdt tests.  The Makefile does this for make check, but
it breaks if the script is run manually.  Add a fallback to handle that
case.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
main
David Gibson 2020-03-04 15:32:47 +11:00
parent 76b43dcbd1
commit 2b5f62d109
1 changed files with 4 additions and 0 deletions

View File

@ -7,6 +7,10 @@ if [ -z "$CC" ]; then
CC=cc CC=cc
fi fi


if [ -z "$PYTHON" ]; then
PYTHON=python3
fi

# stat differs between platforms # stat differs between platforms
if [ -z "$STATSZ" ]; then if [ -z "$STATSZ" ]; then
stat --version 2>/dev/null | grep -q 'GNU' stat --version 2>/dev/null | grep -q 'GNU'