2017-11-13 04:52:10 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-10-02 03:12:38 +00:00
|
|
|
# Script to run all U-Boot tests that use sandbox.
|
2018-11-18 15:14:29 +00:00
|
|
|
# $1: tests to run (empty for all, 'quick' for quick ones only)
|
2018-10-02 03:12:38 +00:00
|
|
|
|
|
|
|
# Runs a test and checks the exit code to decide if it passed
|
|
|
|
# $1: Test name
|
|
|
|
# $2 onwards: command line to run
|
2017-11-13 04:52:10 +00:00
|
|
|
run_test() {
|
2018-10-02 03:12:38 +00:00
|
|
|
echo -n "$1: "
|
|
|
|
shift
|
|
|
|
"$@"
|
2018-10-02 03:12:39 +00:00
|
|
|
[ $? -ne 0 ] && failures=$((failures+1))
|
2017-11-13 04:52:10 +00:00
|
|
|
}
|
2016-07-03 15:40:34 +00:00
|
|
|
|
2018-11-18 15:14:29 +00:00
|
|
|
# SKip slow tests if requested
|
|
|
|
[ "$1" == "quick" ] && mark_expr="not slow"
|
2020-04-18 00:08:59 +00:00
|
|
|
[ "$1" == "quick" ] && skip=--skip-net-tests
|
|
|
|
[ "$1" == "tools" ] && tools_only=y
|
2018-11-18 15:14:29 +00:00
|
|
|
|
2018-10-02 03:12:39 +00:00
|
|
|
failures=0
|
2017-11-27 03:25:55 +00:00
|
|
|
|
2020-04-18 00:08:59 +00:00
|
|
|
if [ -z "$tools_only" ]; then
|
|
|
|
# Run all tests that the standard sandbox build can support
|
|
|
|
run_test "sandbox" ./test/py/test.py --bd sandbox --build \
|
|
|
|
-m "${mark_expr}"
|
|
|
|
fi
|
2017-05-19 02:09:25 +00:00
|
|
|
|
|
|
|
# Run tests which require sandbox_spl
|
2018-10-02 03:12:38 +00:00
|
|
|
run_test "sandbox_spl" ./test/py/test.py --bd sandbox_spl --build \
|
2020-04-18 00:08:59 +00:00
|
|
|
-k 'test_ofplatdata or test_handoff'
|
2017-05-19 02:09:25 +00:00
|
|
|
|
2020-04-18 00:08:59 +00:00
|
|
|
if [ -z "$tools_only" ]; then
|
|
|
|
# Run tests for the flat-device-tree version of sandbox. This is a special
|
|
|
|
# build which does not enable CONFIG_OF_LIVE for the live device tree, so we can
|
|
|
|
# check that functionality is the same. The standard sandbox build (above) uses
|
|
|
|
# CONFIG_OF_LIVE.
|
|
|
|
run_test "sandbox_flattree" ./test/py/test.py --bd sandbox_flattree \
|
|
|
|
--build -k test_ut
|
|
|
|
fi
|
2017-11-13 04:52:10 +00:00
|
|
|
|
2018-10-02 03:12:37 +00:00
|
|
|
# Set up a path to dtc (device-tree compiler) and libfdt.py, a library it
|
2019-07-08 19:18:50 +00:00
|
|
|
# provides and which is built by the sandbox_spl config. Also set up the path
|
|
|
|
# to tools build by the build.
|
2017-12-24 19:12:08 +00:00
|
|
|
DTC_DIR=build-sandbox_spl/scripts/dtc
|
2018-10-02 03:12:37 +00:00
|
|
|
export PYTHONPATH=${DTC_DIR}/pylibfdt
|
|
|
|
export DTC=${DTC_DIR}/dtc
|
2019-07-08 19:18:50 +00:00
|
|
|
TOOLS_DIR=build-sandbox_spl/tools
|
2017-12-24 19:12:08 +00:00
|
|
|
|
2019-07-08 20:25:29 +00:00
|
|
|
run_test "binman" ./tools/binman/binman --toolpath ${TOOLS_DIR} test
|
2020-07-06 03:41:55 +00:00
|
|
|
run_test "patman" ./tools/patman/patman test
|
2018-11-18 15:14:29 +00:00
|
|
|
|
|
|
|
run_test "buildman" ./tools/buildman/buildman -t ${skip}
|
2018-10-02 03:12:39 +00:00
|
|
|
run_test "fdt" ./tools/dtoc/test_fdt -t
|
2018-10-02 03:12:38 +00:00
|
|
|
run_test "dtoc" ./tools/dtoc/dtoc -t
|
2017-11-27 03:25:56 +00:00
|
|
|
|
2017-11-27 03:26:01 +00:00
|
|
|
# This needs you to set up Python test coverage tools.
|
|
|
|
# To enable Python test coverage on Debian-type distributions (e.g. Ubuntu):
|
2018-07-06 16:27:14 +00:00
|
|
|
# $ sudo apt-get install python-pytest python-coverage
|
2019-07-08 19:18:50 +00:00
|
|
|
export PATH=$PATH:${TOOLS_DIR}
|
2019-07-08 20:25:29 +00:00
|
|
|
run_test "binman code coverage" ./tools/binman/binman test -T
|
2018-10-02 03:12:38 +00:00
|
|
|
run_test "dtoc code coverage" ./tools/dtoc/dtoc -T
|
|
|
|
run_test "fdt code coverage" ./tools/dtoc/test_fdt -T
|
2017-11-27 03:26:01 +00:00
|
|
|
|
2018-10-02 03:12:39 +00:00
|
|
|
if [ $failures == 0 ]; then
|
2017-11-13 04:52:10 +00:00
|
|
|
echo "Tests passed!"
|
|
|
|
else
|
|
|
|
echo "Tests FAILED"
|
|
|
|
exit 1
|
|
|
|
fi
|