aboutsummaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorJacob Bachmeyer <jcb62281@gmail.com>2018-12-28 15:35:06 +1100
committerBen Elliston <bje@gnu.org>2018-12-28 15:35:06 +1100
commit6ccb10558e84eca592742a415f64bb6719565875 (patch)
tree5978636e3f6e0cff31867ebcf7d3c0e9f9356bd0 /testsuite
parent04efb47225767928e7bc69036d489572d6e255d2 (diff)
downloaddejagnu-6ccb10558e84eca592742a415f64bb6719565875.zip
dejagnu-6ccb10558e84eca592742a415f64bb6719565875.tar.gz
dejagnu-6ccb10558e84eca592742a415f64bb6719565875.tar.bz2
* testsuite/lib/util-defs.exp: Whitespace clean up.
Signed-off-by: Ben Elliston <bje@gnu.org>
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/lib/util-defs.exp10
1 files changed, 5 insertions, 5 deletions
diff --git a/testsuite/lib/util-defs.exp b/testsuite/lib/util-defs.exp
index d03c1fd..ec05d31 100644
--- a/testsuite/lib/util-defs.exp
+++ b/testsuite/lib/util-defs.exp
@@ -37,11 +37,11 @@ proc util_test { args } {
global verbose
# get the parameters
set cmd [lindex $args 0]
- verbose "Utility to execute is $cmd" 2
+ verbose "Utility to execute is $cmd" 2
set cmd_arg [lindex $args 1]
- verbose "Command line arguments are $cmd_arg" 2
+ verbose "Command line arguments are $cmd_arg" 2
set file [lindex $args 2]
- verbose "The file name to use is $file" 2
+ verbose "The file name to use is $file" 2
set pattern [lindex $args 3]
verbose "The pattern to match is \"$pattern\"" 2
@@ -83,7 +83,7 @@ proc util_start { args } {
set file [lindex $args 2]
if {[which $cmd] == 0} {
- perror "Can't find $cmd"
+ perror "Can't find $cmd"
return ""
}
@@ -94,7 +94,7 @@ proc util_start { args } {
}
catch "exec $cmd $cmd_arg $file" comp_output
if {$comp_output ne ""} {
- send_log "$comp_output\n"
+ send_log "$comp_output\n"
}
return $comp_output
}