diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | testsuite/runtest.libs/libs.exp | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,5 +1,9 @@ 2020-12-27 Jacob Bachmeyer <jcb@gnu.org> + * testsuite/runtest.libs/libs.exp (process_test): Report running + test scripts as each test script is run. + Also, at top-level, sort the list of tests to run. + * doc/dejagnu.texi (testsuite procedure): Remove noise word "api" from new "testsuite can call api" feature test API entrypoint. * lib/framework.exp (testsuite_can): Likewise. diff --git a/testsuite/runtest.libs/libs.exp b/testsuite/runtest.libs/libs.exp index e688ab3..73b4420 100644 --- a/testsuite/runtest.libs/libs.exp +++ b/testsuite/runtest.libs/libs.exp @@ -21,7 +21,7 @@ load_lib libsup.exp proc process_test { test } { global EXPECT - verbose -log "Executing test case $test" + verbose "Running $test ..." 0 set text "\[- A-Za-z0-9\,\.\;\"\_\:\'\`\(\)\!\#\=\+\?\&\*]*" set timeout 150 @@ -97,7 +97,7 @@ proc process_test { test } { } start_expect -foreach i [glob [testsuite file -source -test *.test]] { +foreach i [lsort -dictionary [glob [testsuite file -source -test *.test]]] { if { [runtest_file_p $runtests $i] } { process_test $i } } stop_expect |