aboutsummaryrefslogtreecommitdiff
path: root/tftf/tests
diff options
context:
space:
mode:
authorLeonardo Sandoval <leonardo.sandoval@linaro.org>2020-07-14 11:09:45 -0500
committerLeonardo Sandoval <leonardo.sandoval@linaro.org>2020-07-14 11:09:45 -0500
commitd9fcb247c43e326808eb46a01b23059477b55b56 (patch)
treefebf223f10ca780ab4098ddab69d098c91aa930c /tftf/tests
parent8499afc44a1642b50fce554d4fdc9356d07d53a0 (diff)
downloadtf-a-tests-d9fcb247c43e326808eb46a01b23059477b55b56.tar.gz
remove dashes and and sort tests
remove dashes on 'make help_tests' output aligns a bit more to main 'make help' output. Also, sort tests sets so users find quicker the name of the test. Signed-off-by: Leonardo Sandoval <leonardo.sandoval@linaro.org> Change-Id: If09992ddff95865233b1a311f9a52600d3756556
Diffstat (limited to 'tftf/tests')
-rw-r--r--tftf/tests/tests.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/tftf/tests/tests.mk b/tftf/tests/tests.mk
index f5414e27a..ebe090c1a 100644
--- a/tftf/tests/tests.mk
+++ b/tftf/tests/tests.mk
@@ -8,11 +8,12 @@ TESTS ?= standard
tests_files := $(wildcard tftf/tests/*.xml)
tests_sets := $(patsubst tftf/tests/tests-%.xml,%,${tests_files})
+tests_sets := $(sort ${tests_sets})
PHONY: help_tests
help_tests:
- @echo "Available sets of tests:"
- @$(foreach t, ${tests_sets}, printf " - %s\n" ${t};)
+ @echo "Supported Tests:"
+ @$(foreach t, ${tests_sets}, printf " %s\n" ${t};)
TESTS_FILE := tftf/tests/tests-${TESTS}.xml
TESTS_MAKEFILE := tftf/tests/tests-${TESTS}.mk