Merge "remove dashes and and sort tests"
diff --git a/tftf/tests/tests.mk b/tftf/tests/tests.mk
index f5414e2..ebe090c 100644
--- a/tftf/tests/tests.mk
+++ b/tftf/tests/tests.mk
@@ -8,11 +8,12 @@
 
 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