diff options
author | Rob Savoye <rob.savoye@linaro.org> | 2016-03-29 11:31:47 +1100 |
---|---|---|
committer | Ben Elliston <bje@gnu.org> | 2016-03-29 11:31:47 +1100 |
commit | 6459cc2e98caf981af7d0c7d4369d19e1c0b4cf5 (patch) | |
tree | 18c3370009e1d6ae5ddc37e3ebb915e018466249 | |
parent | 7ac78cd6ff07bef60e021b2e787fc172b2b18a39 (diff) | |
download | dejagnu-6459cc2e98caf981af7d0c7d4369d19e1c0b4cf5.zip dejagnu-6459cc2e98caf981af7d0c7d4369d19e1c0b4cf5.tar.gz dejagnu-6459cc2e98caf981af7d0c7d4369d19e1c0b4cf5.tar.bz2 |
* runtest.exp: Only print "searching for <test name>" message at
verbose level >= 2 -- too much noise.
Signed-off-by: Ben Elliston <bje@gnu.org>
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | runtest.exp | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2016-03-29 Rob Savoye <rob.savoye@linaro.org> + + * runtest.exp: Only print "searching for <test name>" message at + verbose level >= 2 -- too much noise. + 2016-03-29 Ben Elliston <bje@gnu.org> * texinfo.tex: Update to latest master version. diff --git a/runtest.exp b/runtest.exp index d05952b..69d2f79 100644 --- a/runtest.exp +++ b/runtest.exp @@ -1877,7 +1877,7 @@ foreach current_target $target_list { # set `runtests' to a list of two elements: the script name # and any arguments ("" if none). if {[array exists all_runtests]} { - verbose "searching for $test_name in [array names all_runtests]" + verbose "searching for $test_name in [array names all_runtests]" 2 if { 0 > [lsearch [array names all_runtests] [file tail $test_name]]} { if { 0 > [lsearch [array names all_runtests] $test_name] } { continue |