Simon Glass | 2f52018 | 2017-11-12 21:52:10 -0700 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
Simon Glass | c9adb35 | 2018-10-01 21:12:38 -0600 | [diff] [blame] | 3 | # Script to run all U-Boot tests that use sandbox. |
Simon Glass | 499fde5 | 2018-11-18 08:14:29 -0700 | [diff] [blame] | 4 | # $1: tests to run (empty for all, 'quick' for quick ones only) |
Simon Glass | c9adb35 | 2018-10-01 21:12:38 -0600 | [diff] [blame] | 5 | |
| 6 | # Runs a test and checks the exit code to decide if it passed |
| 7 | # $1: Test name |
| 8 | # $2 onwards: command line to run |
Simon Glass | 2f52018 | 2017-11-12 21:52:10 -0700 | [diff] [blame] | 9 | run_test() { |
Simon Glass | c9adb35 | 2018-10-01 21:12:38 -0600 | [diff] [blame] | 10 | echo -n "$1: " |
| 11 | shift |
| 12 | "$@" |
Simon Glass | 3bc11e8 | 2018-10-01 21:12:39 -0600 | [diff] [blame] | 13 | [ $? -ne 0 ] && failures=$((failures+1)) |
Simon Glass | 2f52018 | 2017-11-12 21:52:10 -0700 | [diff] [blame] | 14 | } |
Simon Glass | 07f4ead | 2016-07-03 09:40:34 -0600 | [diff] [blame] | 15 | |
Simon Glass | 499fde5 | 2018-11-18 08:14:29 -0700 | [diff] [blame] | 16 | # SKip slow tests if requested |
| 17 | [ "$1" == "quick" ] && mark_expr="not slow" |
Simon Glass | 7616080 | 2020-04-17 18:08:59 -0600 | [diff] [blame] | 18 | [ "$1" == "quick" ] && skip=--skip-net-tests |
| 19 | [ "$1" == "tools" ] && tools_only=y |
Simon Glass | 499fde5 | 2018-11-18 08:14:29 -0700 | [diff] [blame] | 20 | |
Simon Glass | 3bc11e8 | 2018-10-01 21:12:39 -0600 | [diff] [blame] | 21 | failures=0 |
Simon Glass | 73a01d9 | 2017-11-26 20:25:55 -0700 | [diff] [blame] | 22 | |
Simon Glass | 7616080 | 2020-04-17 18:08:59 -0600 | [diff] [blame] | 23 | if [ -z "$tools_only" ]; then |
| 24 | # Run all tests that the standard sandbox build can support |
| 25 | run_test "sandbox" ./test/py/test.py --bd sandbox --build \ |
| 26 | -m "${mark_expr}" |
| 27 | fi |
Simon Glass | 029ab15 | 2017-05-18 20:09:25 -0600 | [diff] [blame] | 28 | |
| 29 | # Run tests which require sandbox_spl |
Simon Glass | c9adb35 | 2018-10-01 21:12:38 -0600 | [diff] [blame] | 30 | run_test "sandbox_spl" ./test/py/test.py --bd sandbox_spl --build \ |
Simon Glass | 7616080 | 2020-04-17 18:08:59 -0600 | [diff] [blame] | 31 | -k 'test_ofplatdata or test_handoff' |
Simon Glass | 029ab15 | 2017-05-18 20:09:25 -0600 | [diff] [blame] | 32 | |
Simon Glass | 7616080 | 2020-04-17 18:08:59 -0600 | [diff] [blame] | 33 | if [ -z "$tools_only" ]; then |
| 34 | # Run tests for the flat-device-tree version of sandbox. This is a special |
| 35 | # build which does not enable CONFIG_OF_LIVE for the live device tree, so we can |
| 36 | # check that functionality is the same. The standard sandbox build (above) uses |
| 37 | # CONFIG_OF_LIVE. |
| 38 | run_test "sandbox_flattree" ./test/py/test.py --bd sandbox_flattree \ |
| 39 | --build -k test_ut |
| 40 | fi |
Simon Glass | 2f52018 | 2017-11-12 21:52:10 -0700 | [diff] [blame] | 41 | |
Simon Glass | 734f3de | 2018-10-01 21:12:37 -0600 | [diff] [blame] | 42 | # Set up a path to dtc (device-tree compiler) and libfdt.py, a library it |
Simon Glass | 8acce60 | 2019-07-08 13:18:50 -0600 | [diff] [blame] | 43 | # provides and which is built by the sandbox_spl config. Also set up the path |
| 44 | # to tools build by the build. |
Simon Glass | ed772fe | 2017-12-24 12:12:08 -0700 | [diff] [blame] | 45 | DTC_DIR=build-sandbox_spl/scripts/dtc |
Simon Glass | 734f3de | 2018-10-01 21:12:37 -0600 | [diff] [blame] | 46 | export PYTHONPATH=${DTC_DIR}/pylibfdt |
| 47 | export DTC=${DTC_DIR}/dtc |
Simon Glass | 8acce60 | 2019-07-08 13:18:50 -0600 | [diff] [blame] | 48 | TOOLS_DIR=build-sandbox_spl/tools |
Simon Glass | ed772fe | 2017-12-24 12:12:08 -0700 | [diff] [blame] | 49 | |
Simon Glass | 53cd5d9 | 2019-07-08 14:25:29 -0600 | [diff] [blame] | 50 | run_test "binman" ./tools/binman/binman --toolpath ${TOOLS_DIR} test |
Simon Glass | c9adb35 | 2018-10-01 21:12:38 -0600 | [diff] [blame] | 51 | run_test "patman" ./tools/patman/patman --test |
Simon Glass | 499fde5 | 2018-11-18 08:14:29 -0700 | [diff] [blame] | 52 | |
Simon Glass | 499fde5 | 2018-11-18 08:14:29 -0700 | [diff] [blame] | 53 | run_test "buildman" ./tools/buildman/buildman -t ${skip} |
Simon Glass | 3bc11e8 | 2018-10-01 21:12:39 -0600 | [diff] [blame] | 54 | run_test "fdt" ./tools/dtoc/test_fdt -t |
Simon Glass | c9adb35 | 2018-10-01 21:12:38 -0600 | [diff] [blame] | 55 | run_test "dtoc" ./tools/dtoc/dtoc -t |
Simon Glass | 72d8172 | 2017-11-26 20:25:56 -0700 | [diff] [blame] | 56 | |
Simon Glass | 30d704c | 2017-11-26 20:26:01 -0700 | [diff] [blame] | 57 | # This needs you to set up Python test coverage tools. |
| 58 | # To enable Python test coverage on Debian-type distributions (e.g. Ubuntu): |
Tom Rini | 16d836c | 2018-07-06 10:27:14 -0600 | [diff] [blame] | 59 | # $ sudo apt-get install python-pytest python-coverage |
Simon Glass | 8acce60 | 2019-07-08 13:18:50 -0600 | [diff] [blame] | 60 | export PATH=$PATH:${TOOLS_DIR} |
Simon Glass | 53cd5d9 | 2019-07-08 14:25:29 -0600 | [diff] [blame] | 61 | run_test "binman code coverage" ./tools/binman/binman test -T |
Simon Glass | c9adb35 | 2018-10-01 21:12:38 -0600 | [diff] [blame] | 62 | run_test "dtoc code coverage" ./tools/dtoc/dtoc -T |
| 63 | run_test "fdt code coverage" ./tools/dtoc/test_fdt -T |
Simon Glass | 30d704c | 2017-11-26 20:26:01 -0700 | [diff] [blame] | 64 | |
Simon Glass | 3bc11e8 | 2018-10-01 21:12:39 -0600 | [diff] [blame] | 65 | if [ $failures == 0 ]; then |
Simon Glass | 2f52018 | 2017-11-12 21:52:10 -0700 | [diff] [blame] | 66 | echo "Tests passed!" |
| 67 | else |
| 68 | echo "Tests FAILED" |
| 69 | exit 1 |
| 70 | fi |