| OLD | NEW |
| 1 # multi-create.exp -- Test creating many threads in parallel | 1 # multi-create.exp -- Test creating many threads in parallel |
| 2 # Copyright (C) 2007-2012 Free Software Foundation, Inc. | 2 # Copyright (C) 2007-2013 Free Software Foundation, Inc. |
| 3 | 3 |
| 4 # This program is free software; you can redistribute it and/or modify | 4 # This program is free software; you can redistribute it and/or modify |
| 5 # it under the terms of the GNU General Public License as published by | 5 # it under the terms of the GNU General Public License as published by |
| 6 # the Free Software Foundation; either version 3 of the License, or | 6 # the Free Software Foundation; either version 3 of the License, or |
| 7 # (at your option) any later version. | 7 # (at your option) any later version. |
| 8 # | 8 # |
| 9 # This program is distributed in the hope that it will be useful, | 9 # This program is distributed in the hope that it will be useful, |
| 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 # GNU General Public License for more details. | 12 # GNU General Public License for more details. |
| (...skipping 14 matching lines...) Expand all Loading... |
| 27 # Run to the beginning of create_function several times. Make sure | 27 # Run to the beginning of create_function several times. Make sure |
| 28 # we always stop there, and not somewhere else in the guts of the | 28 # we always stop there, and not somewhere else in the guts of the |
| 29 # thread library. | 29 # thread library. |
| 30 | 30 |
| 31 set bp_location1 [gdb_get_line_number "set breakpoint 1 here"] | 31 set bp_location1 [gdb_get_line_number "set breakpoint 1 here"] |
| 32 gdb_breakpoint $srcfile:$bp_location1 | 32 gdb_breakpoint $srcfile:$bp_location1 |
| 33 for {set i 0} {$i < 32} {incr i} { | 33 for {set i 0} {$i < 32} {incr i} { |
| 34 gdb_test "continue" ".*Breakpoint $decimal,.*$srcfile:$bp_location1.*" \ | 34 gdb_test "continue" ".*Breakpoint $decimal,.*$srcfile:$bp_location1.*" \ |
| 35 "continue to breakpoint $i" | 35 "continue to breakpoint $i" |
| 36 } | 36 } |
| OLD | NEW |