diff options
author | Rob Savoye <rob@cygnus> | 1993-04-19 21:05:03 +0000 |
---|---|---|
committer | Rob Savoye <rob@cygnus> | 1993-04-19 21:05:03 +0000 |
commit | 0fd9814fe5534b9b0bac19ab780cc70bb9e90e19 (patch) | |
tree | 2f6791cdc928d3e0620a3fd1ce2cb371a677c0f4 | |
parent | 9ef534b90dd8aa37aad4f1cdfe9f73805a1371e4 (diff) | |
download | gdb-0fd9814fe5534b9b0bac19ab780cc70bb9e90e19.zip gdb-0fd9814fe5534b9b0bac19ab780cc70bb9e90e19.tar.gz gdb-0fd9814fe5534b9b0bac19ab780cc70bb9e90e19.tar.bz2 |
Mostly cleanup. Doesn't prints it's own pass/fail message anymore.
-rwxr-xr-x | binutils/testsuite/lib/util-defs.exp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/binutils/testsuite/lib/util-defs.exp b/binutils/testsuite/lib/util-defs.exp index 4a2f013..d269072 100755 --- a/binutils/testsuite/lib/util-defs.exp +++ b/binutils/testsuite/lib/util-defs.exp @@ -65,16 +65,12 @@ proc util_test { args } { set comp_output [util_start $cmd $cmd_arg $file] if [regexp "$pattern" $comp_output] then { - pass "$message" return 0 } if [string match "" $comp_output] then { - warning "Got no output." return 1 } - - fail "$message" return 1 } |