From: Simon Glass Date: Mon, 27 Nov 2017 03:26:00 +0000 (-0700) Subject: travis.yml: Run tests for tools X-Git-Tag: v2018.03-rc1~174^2~10 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=f2d07788851a6894ef084dc832e5eb9ca90bee0d;p=u-boot travis.yml: Run tests for tools Run tests for the Python tools used by U-Boot. Signed-off-by: Simon Glass --- diff --git a/.travis.yml b/.travis.yml index a53e7c6f7b..5e251314db 100644 --- a/.travis.yml +++ b/.travis.yml @@ -118,6 +118,20 @@ script: ./test/py/test.py --bd ${TEST_PY_BD} ${TEST_PY_ID} -k "${TEST_PY_TEST_SPEC:-not a_test_which_does_not_exist}" --build-dir "$UBOOT_TRAVIS_BUILD_DIR"; + ret=$?; + if [[ $ret -ne 0 ]]; then + exit $ret; + fi; + fi; + if [[ -n "${TEST_PY_TOOLS}" ]]; then + PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt" + PATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}" + ./tools/binman/binman -t && + ./tools/patman/patman --test && + ./tools/buildman/buildman -t && + PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt" + PATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}" + ./tools/dtoc/dtoc -t; fi matrix: @@ -295,6 +309,7 @@ matrix: TEST_PY_TEST_SPEC="test_ofplatdata" BUILDMAN="^sandbox$" TOOLCHAIN="x86_64" + TEST_PY_TOOLS="yes" - env: - TEST_PY_BD="sandbox_flattree" BUILDMAN="^sandbox_flattree$"