1#!/bin/bash 2 3# Script to run all U-Boot tests that use sandbox. 4 5# Runs a test and checks the exit code to decide if it passed 6# $1: Test name 7# $2 onwards: command line to run 8run_test() { 9 echo -n "$1: " 10 shift 11 "$@" 12 [ $? -ne 0 ] && failures=$((failures+1)) 13} 14 15failures=0 16 17# Run all tests that the standard sandbox build can support 18run_test "sandbox" ./test/py/test.py --bd sandbox --build 19 20# Run tests which require sandbox_spl 21run_test "sandbox_spl" ./test/py/test.py --bd sandbox_spl --build \ 22 -k 'test_ofplatdata or test_handoff' 23 24# Run tests for the flat-device-tree version of sandbox. This is a special 25# build which does not enable CONFIG_OF_LIVE for the live device tree, so we can 26# check that functionality is the same. The standard sandbox build (above) uses 27# CONFIG_OF_LIVE. 28run_test "sandbox_flattree" ./test/py/test.py --bd sandbox_flattree --build \ 29 -k test_ut 30 31# Set up a path to dtc (device-tree compiler) and libfdt.py, a library it 32# provides and which is built by the sandbox_spl config. 33DTC_DIR=build-sandbox_spl/scripts/dtc 34export PYTHONPATH=${DTC_DIR}/pylibfdt 35export DTC=${DTC_DIR}/dtc 36 37run_test "binman" ./tools/binman/binman -t 38run_test "patman" ./tools/patman/patman --test 39run_test "buildman" ./tools/buildman/buildman -t 40run_test "fdt" ./tools/dtoc/test_fdt -t 41run_test "dtoc" ./tools/dtoc/dtoc -t 42 43# This needs you to set up Python test coverage tools. 44# To enable Python test coverage on Debian-type distributions (e.g. Ubuntu): 45# $ sudo apt-get install python-pytest python-coverage 46run_test "binman code coverage" ./tools/binman/binman -T 47run_test "dtoc code coverage" ./tools/dtoc/dtoc -T 48run_test "fdt code coverage" ./tools/dtoc/test_fdt -T 49 50if [ $failures == 0 ]; then 51 echo "Tests passed!" 52else 53 echo "Tests FAILED" 54 exit 1 55fi 56