aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-checks/checks.exp
diff options
context:
space:
mode:
Diffstat (limited to 'ld/testsuite/ld-checks/checks.exp')
-rw-r--r--ld/testsuite/ld-checks/checks.exp19
1 files changed, 10 insertions, 9 deletions
diff --git a/ld/testsuite/ld-checks/checks.exp b/ld/testsuite/ld-checks/checks.exp
index a0b6ade..52b4088 100644
--- a/ld/testsuite/ld-checks/checks.exp
+++ b/ld/testsuite/ld-checks/checks.exp
@@ -61,17 +61,18 @@ proc section_check {} {
# Make sure that we got some output from the linker
if [string match "" $exec_output] then {
fail $test
- }
+ } else {
- # Now remove our expected error message
- regsub -all ".*: section .data .* overlaps section .text .*" $exec_output "" exec_output
+ # Now remove our expected error message
+ regsub -all ".*: section .data .* overlaps section .text .*" $exec_output "" exec_output
- # And check to see if anything else, (unexpected) was left
- if [string match "" $exec_output] then {
- pass $test
- } else {
- verbose -log "Unexpected linker message(s): $exec_output"
- fail $test
+ # And check to see if anything else, (unexpected) was left
+ if [string match "" $exec_output] then {
+ pass $test
+ } else {
+ verbose -log "Unexpected linker message(s): $exec_output"
+ fail $test
+ }
}
}