diff options
author | Simon Glass <sjg@chromium.org> | 2020-07-05 21:41:55 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2020-07-24 19:25:15 -0600 |
commit | 6bb74de7ed070a5ea44cc111939ed5bb07df5ef5 (patch) | |
tree | 9f7793fb71473d81de35ba0c8b647e028fa0ab16 /.travis.yml | |
parent | c4e79029e2aba29b769c9ddc6967a09cd7f5d61d (diff) | |
download | u-boot-6bb74de7ed070a5ea44cc111939ed5bb07df5ef5.tar.gz u-boot-6bb74de7ed070a5ea44cc111939ed5bb07df5ef5.tar.bz2 u-boot-6bb74de7ed070a5ea44cc111939ed5bb07df5ef5.zip |
patman: Add a 'test' subcommand
At present we use --test to indicate that tests should be run. It is
better to use a subcommand for list, like binman. Change it and adjust
the existing code to fit under a 'send' subcommand, the default.
Give this subcommand the same default arguments as the others.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 96fd55fe1e..73daf273c5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -257,7 +257,7 @@ script: export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt"; export PATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}"; ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test && - ./tools/patman/patman --test && + ./tools/patman/patman test && ./tools/buildman/buildman -t && ./tools/dtoc/dtoc -t && make testconfig; |