diff options
author | Simon Glass <sjg@chromium.org> | 2020-04-17 18:08:59 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2020-04-26 14:25:21 -0600 |
commit | 76160801b0121515d6d33e4e26a54d34296687b4 (patch) | |
tree | 99b2ef17d05db3e3517b77e619ea95cdf80ba89e /Makefile | |
parent | c07ab6effb76e7e4c9989012a4c0413c22577326 (diff) | |
download | u-boot-76160801b0121515d6d33e4e26a54d34296687b4.zip u-boot-76160801b0121515d6d33e4e26a54d34296687b4.tar.gz u-boot-76160801b0121515d6d33e4e26a54d34296687b4.tar.bz2 |
Add a 'make tcheck' option to test tools
Running all the unit tests takes a while and is not useful when you are
just modifying the tools. Add an option to run only the tools tests.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -512,7 +512,7 @@ dt_h := include/generated/dt.h no-dot-config-targets := clean clobber mrproper distclean \ help %docs check% coccicheck \ - ubootversion backup tests check qcheck + ubootversion backup tests check qcheck tcheck config-targets := 0 mixed-targets := 0 @@ -2098,6 +2098,7 @@ help: @echo '' @echo ' check - Run all automated tests that use sandbox' @echo ' qcheck - Run quick automated tests that use sandbox' + @echo ' tcheck - Run quick automated tests on tools' @echo '' @echo 'Other generic targets:' @echo ' all - Build all necessary images depending on configuration' @@ -2143,6 +2144,9 @@ tests check: qcheck: $(srctree)/test/run quick +tcheck: + $(srctree)/test/run tools + # Documentation targets # --------------------------------------------------------------------------- DOC_TARGETS := xmldocs latexdocs pdfdocs htmldocs epubdocs cleandocs \ |