mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-03 18:23:34 +00:00
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>
This commit is contained in:
parent
c07ab6effb
commit
76160801b0
2 changed files with 21 additions and 11 deletions
6
Makefile
6
Makefile
|
@ -512,7 +512,7 @@ dt_h := include/generated/dt.h
|
||||||
|
|
||||||
no-dot-config-targets := clean clobber mrproper distclean \
|
no-dot-config-targets := clean clobber mrproper distclean \
|
||||||
help %docs check% coccicheck \
|
help %docs check% coccicheck \
|
||||||
ubootversion backup tests check qcheck
|
ubootversion backup tests check qcheck tcheck
|
||||||
|
|
||||||
config-targets := 0
|
config-targets := 0
|
||||||
mixed-targets := 0
|
mixed-targets := 0
|
||||||
|
@ -2098,6 +2098,7 @@ help:
|
||||||
@echo ''
|
@echo ''
|
||||||
@echo ' check - Run all automated tests that use sandbox'
|
@echo ' check - Run all automated tests that use sandbox'
|
||||||
@echo ' qcheck - Run quick automated tests that use sandbox'
|
@echo ' qcheck - Run quick automated tests that use sandbox'
|
||||||
|
@echo ' tcheck - Run quick automated tests on tools'
|
||||||
@echo ''
|
@echo ''
|
||||||
@echo 'Other generic targets:'
|
@echo 'Other generic targets:'
|
||||||
@echo ' all - Build all necessary images depending on configuration'
|
@echo ' all - Build all necessary images depending on configuration'
|
||||||
|
@ -2143,6 +2144,9 @@ tests check:
|
||||||
qcheck:
|
qcheck:
|
||||||
$(srctree)/test/run quick
|
$(srctree)/test/run quick
|
||||||
|
|
||||||
|
tcheck:
|
||||||
|
$(srctree)/test/run tools
|
||||||
|
|
||||||
# Documentation targets
|
# Documentation targets
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
DOC_TARGETS := xmldocs latexdocs pdfdocs htmldocs epubdocs cleandocs \
|
DOC_TARGETS := xmldocs latexdocs pdfdocs htmldocs epubdocs cleandocs \
|
||||||
|
|
24
test/run
24
test/run
|
@ -15,22 +15,29 @@ run_test() {
|
||||||
|
|
||||||
# SKip slow tests if requested
|
# SKip slow tests if requested
|
||||||
[ "$1" == "quick" ] && mark_expr="not slow"
|
[ "$1" == "quick" ] && mark_expr="not slow"
|
||||||
|
[ "$1" == "quick" ] && skip=--skip-net-tests
|
||||||
|
[ "$1" == "tools" ] && tools_only=y
|
||||||
|
|
||||||
failures=0
|
failures=0
|
||||||
|
|
||||||
# Run all tests that the standard sandbox build can support
|
if [ -z "$tools_only" ]; then
|
||||||
run_test "sandbox" ./test/py/test.py --bd sandbox --build -m "${mark_expr}"
|
# Run all tests that the standard sandbox build can support
|
||||||
|
run_test "sandbox" ./test/py/test.py --bd sandbox --build \
|
||||||
|
-m "${mark_expr}"
|
||||||
|
fi
|
||||||
|
|
||||||
# Run tests which require sandbox_spl
|
# Run tests which require sandbox_spl
|
||||||
run_test "sandbox_spl" ./test/py/test.py --bd sandbox_spl --build \
|
run_test "sandbox_spl" ./test/py/test.py --bd sandbox_spl --build \
|
||||||
-k 'test_ofplatdata or test_handoff'
|
-k 'test_ofplatdata or test_handoff'
|
||||||
|
|
||||||
# Run tests for the flat-device-tree version of sandbox. This is a special
|
if [ -z "$tools_only" ]; then
|
||||||
# build which does not enable CONFIG_OF_LIVE for the live device tree, so we can
|
# Run tests for the flat-device-tree version of sandbox. This is a special
|
||||||
# check that functionality is the same. The standard sandbox build (above) uses
|
# build which does not enable CONFIG_OF_LIVE for the live device tree, so we can
|
||||||
# CONFIG_OF_LIVE.
|
# check that functionality is the same. The standard sandbox build (above) uses
|
||||||
run_test "sandbox_flattree" ./test/py/test.py --bd sandbox_flattree --build \
|
# CONFIG_OF_LIVE.
|
||||||
-k test_ut
|
run_test "sandbox_flattree" ./test/py/test.py --bd sandbox_flattree \
|
||||||
|
--build -k test_ut
|
||||||
|
fi
|
||||||
|
|
||||||
# Set up a path to dtc (device-tree compiler) and libfdt.py, a library it
|
# Set up a path to dtc (device-tree compiler) and libfdt.py, a library it
|
||||||
# provides and which is built by the sandbox_spl config. Also set up the path
|
# provides and which is built by the sandbox_spl config. Also set up the path
|
||||||
|
@ -43,7 +50,6 @@ TOOLS_DIR=build-sandbox_spl/tools
|
||||||
run_test "binman" ./tools/binman/binman --toolpath ${TOOLS_DIR} test
|
run_test "binman" ./tools/binman/binman --toolpath ${TOOLS_DIR} test
|
||||||
run_test "patman" ./tools/patman/patman --test
|
run_test "patman" ./tools/patman/patman --test
|
||||||
|
|
||||||
[ "$1" == "quick" ] && skip=--skip-net-tests
|
|
||||||
run_test "buildman" ./tools/buildman/buildman -t ${skip}
|
run_test "buildman" ./tools/buildman/buildman -t ${skip}
|
||||||
run_test "fdt" ./tools/dtoc/test_fdt -t
|
run_test "fdt" ./tools/dtoc/test_fdt -t
|
||||||
run_test "dtoc" ./tools/dtoc/dtoc -t
|
run_test "dtoc" ./tools/dtoc/dtoc -t
|
||||||
|
|
Loading…
Add table
Reference in a new issue