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" |
| 18 | |
Simon Glass | 3bc11e8 | 2018-10-01 21:12:39 -0600 | [diff] [blame] | 19 | failures=0 |
Simon Glass | 73a01d9 | 2017-11-26 20:25:55 -0700 | [diff] [blame] | 20 | |
Simon Glass | 029ab15 | 2017-05-18 20:09:25 -0600 | [diff] [blame] | 21 | # Run all tests that the standard sandbox build can support |
Simon Glass | 499fde5 | 2018-11-18 08:14:29 -0700 | [diff] [blame] | 22 | run_test "sandbox" ./test/py/test.py --bd sandbox --build -m "${mark_expr}" |
Simon Glass | 029ab15 | 2017-05-18 20:09:25 -0600 | [diff] [blame] | 23 | |
| 24 | # Run tests which require sandbox_spl |
Simon Glass | c9adb35 | 2018-10-01 21:12:38 -0600 | [diff] [blame] | 25 | run_test "sandbox_spl" ./test/py/test.py --bd sandbox_spl --build \ |
Simon Glass | b0edea3 | 2018-11-15 18:44:09 -0700 | [diff] [blame] | 26 | -k 'test_ofplatdata or test_handoff' |
Simon Glass | 029ab15 | 2017-05-18 20:09:25 -0600 | [diff] [blame] | 27 | |
Simon Glass | 3bc11e8 | 2018-10-01 21:12:39 -0600 | [diff] [blame] | 28 | # Run tests for the flat-device-tree version of sandbox. This is a special |
| 29 | # build which does not enable CONFIG_OF_LIVE for the live device tree, so we can |
| 30 | # check that functionality is the same. The standard sandbox build (above) uses |
| 31 | # CONFIG_OF_LIVE. |
Simon Glass | 2673afe | 2018-10-01 21:12:46 -0600 | [diff] [blame] | 32 | run_test "sandbox_flattree" ./test/py/test.py --bd sandbox_flattree --build \ |
| 33 | -k test_ut |
Simon Glass | 2f52018 | 2017-11-12 21:52:10 -0700 | [diff] [blame] | 34 | |
Simon Glass | 734f3de | 2018-10-01 21:12:37 -0600 | [diff] [blame] | 35 | # 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] | 36 | # provides and which is built by the sandbox_spl config. Also set up the path |
| 37 | # to tools build by the build. |
Simon Glass | ed772fe | 2017-12-24 12:12:08 -0700 | [diff] [blame] | 38 | DTC_DIR=build-sandbox_spl/scripts/dtc |
Simon Glass | 734f3de | 2018-10-01 21:12:37 -0600 | [diff] [blame] | 39 | export PYTHONPATH=${DTC_DIR}/pylibfdt |
| 40 | export DTC=${DTC_DIR}/dtc |
Simon Glass | 8acce60 | 2019-07-08 13:18:50 -0600 | [diff] [blame] | 41 | TOOLS_DIR=build-sandbox_spl/tools |
Simon Glass | ed772fe | 2017-12-24 12:12:08 -0700 | [diff] [blame] | 42 | |
Simon Glass | 53cd5d9 | 2019-07-08 14:25:29 -0600 | [diff] [blame] | 43 | run_test "binman" ./tools/binman/binman --toolpath ${TOOLS_DIR} test |
Simon Glass | c9adb35 | 2018-10-01 21:12:38 -0600 | [diff] [blame] | 44 | run_test "patman" ./tools/patman/patman --test |
Simon Glass | 499fde5 | 2018-11-18 08:14:29 -0700 | [diff] [blame] | 45 | |
| 46 | [ "$1" == "quick" ] && skip=--skip-net-tests |
| 47 | run_test "buildman" ./tools/buildman/buildman -t ${skip} |
Simon Glass | 3bc11e8 | 2018-10-01 21:12:39 -0600 | [diff] [blame] | 48 | run_test "fdt" ./tools/dtoc/test_fdt -t |
Simon Glass | c9adb35 | 2018-10-01 21:12:38 -0600 | [diff] [blame] | 49 | run_test "dtoc" ./tools/dtoc/dtoc -t |
Simon Glass | 72d8172 | 2017-11-26 20:25:56 -0700 | [diff] [blame] | 50 | |
Simon Glass | 30d704c | 2017-11-26 20:26:01 -0700 | [diff] [blame] | 51 | # This needs you to set up Python test coverage tools. |
| 52 | # To enable Python test coverage on Debian-type distributions (e.g. Ubuntu): |
Tom Rini | 16d836c | 2018-07-06 10:27:14 -0600 | [diff] [blame] | 53 | # $ sudo apt-get install python-pytest python-coverage |
Simon Glass | 8acce60 | 2019-07-08 13:18:50 -0600 | [diff] [blame] | 54 | export PATH=$PATH:${TOOLS_DIR} |
Simon Glass | 53cd5d9 | 2019-07-08 14:25:29 -0600 | [diff] [blame] | 55 | run_test "binman code coverage" ./tools/binman/binman test -T |
Simon Glass | c9adb35 | 2018-10-01 21:12:38 -0600 | [diff] [blame] | 56 | run_test "dtoc code coverage" ./tools/dtoc/dtoc -T |
| 57 | run_test "fdt code coverage" ./tools/dtoc/test_fdt -T |
Simon Glass | 30d704c | 2017-11-26 20:26:01 -0700 | [diff] [blame] | 58 | |
Simon Glass | 3bc11e8 | 2018-10-01 21:12:39 -0600 | [diff] [blame] | 59 | if [ $failures == 0 ]; then |
Simon Glass | 2f52018 | 2017-11-12 21:52:10 -0700 | [diff] [blame] | 60 | echo "Tests passed!" |
| 61 | else |
| 62 | echo "Tests FAILED" |
| 63 | exit 1 |
| 64 | fi |