diff options
author | Alan Modra <amodra@gmail.com> | 2023-02-21 16:15:59 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2023-02-21 16:21:42 +1030 |
commit | 284e8cbae0d78a3a0a0e3ceeb862ce5ad149a7a2 (patch) | |
tree | 26fb36d2046653d983150a43c81a15200ba0b414 /ld | |
parent | 4a5752f31d9a306da94a24b40c55033fb565f036 (diff) | |
download | gdb-284e8cbae0d78a3a0a0e3ceeb862ce5ad149a7a2.zip gdb-284e8cbae0d78a3a0a0e3ceeb862ce5ad149a7a2.tar.gz gdb-284e8cbae0d78a3a0a0e3ceeb862ce5ad149a7a2.tar.bz2 |
Both FAIL and PASS "check sections 2"?
* testsuite/ld-checks/checks.exp (check sections 2): Don't
continue on with rest of test past first fail.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/testsuite/ld-checks/checks.exp | 19 |
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 + } } } |