run 1.7 KB

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