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
parent
76b43dcbd1
commit
2b5f62d109
|
@ -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'
|
||||||
|
|
Loading…
Reference in New Issue