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 | f6e6022 | 2022-08-06 17:51:55 -0600 | [diff] [blame] | 16 | # Select test attributes |
Simon Glass | d1962ac | 2022-08-06 17:51:59 -0600 | [diff] [blame] | 17 | ut_mark_expr=test_ut |
Simon Glass | f6e6022 | 2022-08-06 17:51:55 -0600 | [diff] [blame] | 18 | if [ "$1" = "quick" ]; then |
| 19 | mark_expr="not slow" |
Simon Glass | d1962ac | 2022-08-06 17:51:59 -0600 | [diff] [blame] | 20 | ut_mark_expr="test_ut and not slow" |
Simon Glass | f6e6022 | 2022-08-06 17:51:55 -0600 | [diff] [blame] | 21 | skip=--skip-net-tests |
| 22 | fi |
| 23 | |
Simon Glass | 7616080 | 2020-04-17 18:08:59 -0600 | [diff] [blame] | 24 | [ "$1" == "tools" ] && tools_only=y |
Simon Glass | 499fde5 | 2018-11-18 08:14:29 -0700 | [diff] [blame] | 25 | |
Simon Glass | d1962ac | 2022-08-06 17:51:59 -0600 | [diff] [blame] | 26 | if [ "$1" = "parallel" ]; then |
| 27 | if ! echo 'import xdist' | python3 2>/dev/null; then |
| 28 | echo "Please install python3-pytest-xdist - see doc/develop/py_testing.rst" |
| 29 | exit 1 |
| 30 | fi |
| 31 | jobs="$(($(nproc) > 16 ? 16 : $(nproc)))" |
| 32 | para="-n${jobs} -q" |
| 33 | prompt="Building and..." |
| 34 | skip=--skip-net-tests |
| 35 | mark_expr="not slow and not bootstd and not spi_flash" |
| 36 | ut_mark_expr="test_ut and not slow and not bootstd and not spi_flash" |
| 37 | echo "Note: test log is garbled with parallel tests" |
| 38 | fi |
| 39 | |
Simon Glass | 3bc11e8 | 2018-10-01 21:12:39 -0600 | [diff] [blame] | 40 | failures=0 |
Simon Glass | 73a01d9 | 2017-11-26 20:25:55 -0700 | [diff] [blame] | 41 | |
Simon Glass | 7616080 | 2020-04-17 18:08:59 -0600 | [diff] [blame] | 42 | if [ -z "$tools_only" ]; then |
| 43 | # Run all tests that the standard sandbox build can support |
Simon Glass | d1962ac | 2022-08-06 17:51:59 -0600 | [diff] [blame] | 44 | echo "${prompt}" |
| 45 | run_test "sandbox" ./test/py/test.py --bd sandbox --build ${para} \ |
Simon Glass | f6e6022 | 2022-08-06 17:51:55 -0600 | [diff] [blame] | 46 | -k "${mark_expr}" |
Simon Glass | 7616080 | 2020-04-17 18:08:59 -0600 | [diff] [blame] | 47 | fi |
Simon Glass | 029ab15 | 2017-05-18 20:09:25 -0600 | [diff] [blame] | 48 | |
| 49 | # Run tests which require sandbox_spl |
Simon Glass | d1962ac | 2022-08-06 17:51:59 -0600 | [diff] [blame] | 50 | echo "${prompt}" |
| 51 | run_test "sandbox_spl" ./test/py/test.py --bd sandbox_spl --build ${para} \ |
Simon Glass | 7b51bf7 | 2020-10-25 20:38:32 -0600 | [diff] [blame] | 52 | -k 'test_ofplatdata or test_handoff or test_spl' |
Simon Glass | 029ab15 | 2017-05-18 20:09:25 -0600 | [diff] [blame] | 53 | |
Michal Suchanek | 59c585e | 2022-10-15 11:30:37 +0200 | [diff] [blame] | 54 | # Run the same tests with sandbox_noinst (i.e. without OF_PLATDATA_INST) |
Simon Glass | d1962ac | 2022-08-06 17:51:59 -0600 | [diff] [blame] | 55 | echo "${prompt}" |
Michal Suchanek | 59c585e | 2022-10-15 11:30:37 +0200 | [diff] [blame] | 56 | run_test "sandbox_noinst" ./test/py/test.py --bd sandbox_noinst --build ${para} \ |
Simon Glass | c25b8dc | 2021-03-15 17:25:33 +1300 | [diff] [blame] | 57 | -k 'test_ofplatdata or test_handoff or test_spl' |
| 58 | |
Simon Glass | 00be519 | 2023-04-02 14:01:27 +1200 | [diff] [blame] | 59 | # Run tests which require sandbox_vpl |
| 60 | echo "${prompt}" |
| 61 | run_test "sandbox_vpl" ./test/py/test.py --bd sandbox_vpl --build ${para} \ |
| 62 | -k 'vpl or test_spl' |
| 63 | |
Simon Glass | 7616080 | 2020-04-17 18:08:59 -0600 | [diff] [blame] | 64 | if [ -z "$tools_only" ]; then |
| 65 | # Run tests for the flat-device-tree version of sandbox. This is a special |
| 66 | # build which does not enable CONFIG_OF_LIVE for the live device tree, so we can |
| 67 | # check that functionality is the same. The standard sandbox build (above) uses |
| 68 | # CONFIG_OF_LIVE. |
Simon Glass | d1962ac | 2022-08-06 17:51:59 -0600 | [diff] [blame] | 69 | echo "${prompt}" |
Simon Glass | 7616080 | 2020-04-17 18:08:59 -0600 | [diff] [blame] | 70 | run_test "sandbox_flattree" ./test/py/test.py --bd sandbox_flattree \ |
Simon Glass | d1962ac | 2022-08-06 17:51:59 -0600 | [diff] [blame] | 71 | ${para} --build -k "${ut_mark_expr}" |
Simon Glass | 7616080 | 2020-04-17 18:08:59 -0600 | [diff] [blame] | 72 | fi |
Simon Glass | 2f52018 | 2017-11-12 21:52:10 -0700 | [diff] [blame] | 73 | |
Simon Glass | 734f3de | 2018-10-01 21:12:37 -0600 | [diff] [blame] | 74 | # 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] | 75 | # provides and which is built by the sandbox_spl config. Also set up the path |
| 76 | # to tools build by the build. |
Simon Glass | ed772fe | 2017-12-24 12:12:08 -0700 | [diff] [blame] | 77 | DTC_DIR=build-sandbox_spl/scripts/dtc |
Simon Glass | 734f3de | 2018-10-01 21:12:37 -0600 | [diff] [blame] | 78 | export PYTHONPATH=${DTC_DIR}/pylibfdt |
| 79 | export DTC=${DTC_DIR}/dtc |
Simon Glass | 8acce60 | 2019-07-08 13:18:50 -0600 | [diff] [blame] | 80 | TOOLS_DIR=build-sandbox_spl/tools |
Simon Glass | ed772fe | 2017-12-24 12:12:08 -0700 | [diff] [blame] | 81 | |
Simon Glass | 53cd5d9 | 2019-07-08 14:25:29 -0600 | [diff] [blame] | 82 | run_test "binman" ./tools/binman/binman --toolpath ${TOOLS_DIR} test |
Simon Glass | 6bb74de | 2020-07-05 21:41:55 -0600 | [diff] [blame] | 83 | run_test "patman" ./tools/patman/patman test |
Simon Glass | 4583c00 | 2023-02-23 18:18:04 -0700 | [diff] [blame] | 84 | run_test "u_boot_pylib" ./tools/u_boot_pylib/u_boot_pylib |
Simon Glass | 499fde5 | 2018-11-18 08:14:29 -0700 | [diff] [blame] | 85 | |
Simon Glass | 499fde5 | 2018-11-18 08:14:29 -0700 | [diff] [blame] | 86 | run_test "buildman" ./tools/buildman/buildman -t ${skip} |
Simon Glass | 3bc11e8 | 2018-10-01 21:12:39 -0600 | [diff] [blame] | 87 | run_test "fdt" ./tools/dtoc/test_fdt -t |
Simon Glass | c9adb35 | 2018-10-01 21:12:38 -0600 | [diff] [blame] | 88 | run_test "dtoc" ./tools/dtoc/dtoc -t |
Simon Glass | 72d8172 | 2017-11-26 20:25:56 -0700 | [diff] [blame] | 89 | |
Simon Glass | 30d704c | 2017-11-26 20:26:01 -0700 | [diff] [blame] | 90 | # This needs you to set up Python test coverage tools. |
| 91 | # To enable Python test coverage on Debian-type distributions (e.g. Ubuntu): |
Tom Rini | 16d836c | 2018-07-06 10:27:14 -0600 | [diff] [blame] | 92 | # $ sudo apt-get install python-pytest python-coverage |
Simon Glass | d1962ac | 2022-08-06 17:51:59 -0600 | [diff] [blame] | 93 | |
| 94 | # Code-coverage tests cannot run in parallel, so skip them in that case |
| 95 | if [ -z "${para}" ]; then |
| 96 | export PATH=$PATH:${TOOLS_DIR} |
| 97 | run_test "binman code coverage" ./tools/binman/binman test -T |
| 98 | run_test "dtoc code coverage" ./tools/dtoc/dtoc -T |
| 99 | run_test "fdt code coverage" ./tools/dtoc/test_fdt -T |
| 100 | fi |
Simon Glass | 30d704c | 2017-11-26 20:26:01 -0700 | [diff] [blame] | 101 | |
Simon Glass | 3bc11e8 | 2018-10-01 21:12:39 -0600 | [diff] [blame] | 102 | if [ $failures == 0 ]; then |
Simon Glass | 2f52018 | 2017-11-12 21:52:10 -0700 | [diff] [blame] | 103 | echo "Tests passed!" |
| 104 | else |
| 105 | echo "Tests FAILED" |
| 106 | exit 1 |
| 107 | fi |