diff options
author | Simon Glass | 2020-07-05 21:41:55 -0600 |
---|---|---|
committer | Simon Glass | 2020-07-20 11:37:47 -0600 |
commit | 57374b09ec956f557ae55939e74ba841d76e0bf2 (patch) | |
tree | 2cc7e382d6c2221e543c3fb6795fe17a03136170 /.travis.yml | |
parent | 4806fa30065773e87bd9071bd21e55b1fc4d63b8 (diff) |
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 1ff140855ea..9438bd13cf0 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; |