diff options
author | Simon Glass <sjg@chromium.org> | 2019-07-08 13:18:50 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2019-07-24 12:53:44 -0700 |
commit | 8acce60b10f2d60945b71f527fd29ee62242b175 (patch) | |
tree | 27a459a577222833ec3c7a7793207294d2c239f0 /.gitlab-ci.yml | |
parent | d5164a79703df76254d8c0ac67037d629d113518 (diff) | |
download | u-boot-8acce60b10f2d60945b71f527fd29ee62242b175.tar.gz u-boot-8acce60b10f2d60945b71f527fd29ee62242b175.tar.bz2 u-boot-8acce60b10f2d60945b71f527fd29ee62242b175.zip |
binman: Pass the toolpath to tests
Tools like ifwitool may not be available in the PATH, but are available in
the build. These tools may be needed by tests, so allow tests to use the
--toolpath flag.
Also use this flag with travis.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e27d86f962..1b9db0cd14 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -176,7 +176,7 @@ Run binman and dtoc testsuite: ./tools/buildman/buildman -P sandbox_spl && export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt"; export PATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}"; - ./tools/binman/binman -t && + ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools -t && ./tools/dtoc/dtoc -t # Test sandbox with test.py |