commit | cdd4206647d0ef8d54d0fa66b3dfa57a4ec07db9 | [log] [tgz] |
---|---|---|
author | Bruno Larsen <blarsen@redhat.com> | Fri May 13 13:23:57 2022 -0300 |
committer | Bruno Larsen <blarsen@redhat.com> | Mon May 16 10:07:43 2022 -0300 |
tree | be9e3ffcbe58cd24f751c1c828a91b8b79099784 | |
parent | b7ff32f191ed7e708412e9faa31cf691f08ca695 [diff] |
gdb/testsuite: fix "continue outside of loop" TCL errors Many test cases had a few lines in the beginning that look like: if { condition } { continue } Where conditions varied, but were mostly in the form of ![runto_main] or [skip_*_tests], making it quite clear that this code block was supposed to finish the test if it entered the code block. This generates TCL errors, as most of these tests are not inside loops. All cases on which this was an obvious mistake are changed in this patch.