xref: /openbmc/u-boot/test/run (revision 3bc11e81)
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.py
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
30# Set up a path to dtc (device-tree compiler) and libfdt.py, a library it
31# provides and which is built by the sandbox_spl config.
32DTC_DIR=build-sandbox_spl/scripts/dtc
33export PYTHONPATH=${DTC_DIR}/pylibfdt
34export DTC=${DTC_DIR}/dtc
35
36run_test "binman" ./tools/binman/binman -t
37run_test "patman" ./tools/patman/patman --test
38run_test "buildman" ./tools/buildman/buildman -t
39run_test "fdt" ./tools/dtoc/test_fdt -t
40run_test "dtoc" ./tools/dtoc/dtoc -t
41
42# This needs you to set up Python test coverage tools.
43# To enable Python test coverage on Debian-type distributions (e.g. Ubuntu):
44#   $ sudo apt-get install python-pytest python-coverage
45run_test "binman code coverage" ./tools/binman/binman -T
46run_test "dtoc code coverage" ./tools/dtoc/dtoc -T
47run_test "fdt code coverage" ./tools/dtoc/test_fdt -T
48
49if [ $failures == 0 ]; then
50	echo "Tests passed!"
51else
52	echo "Tests FAILED"
53	exit 1
54fi
55