| OLD | NEW |
| 1 # Copyright (C) 2010-2012 Free Software Foundation, Inc. | 1 # Copyright (C) 2010-2012 Free Software Foundation, Inc. |
| 2 | 2 |
| 3 # This program is free software; you can redistribute it and/or modify | 3 # This program is free software; you can redistribute it and/or modify |
| 4 # it under the terms of the GNU General Public License as published by | 4 # it under the terms of the GNU General Public License as published by |
| 5 # the Free Software Foundation; either version 3 of the License, or | 5 # the Free Software Foundation; either version 3 of the License, or |
| 6 # (at your option) any later version. | 6 # (at your option) any later version. |
| 7 # | 7 # |
| 8 # This program is distributed in the hope that it will be useful, | 8 # This program is distributed in the hope that it will be useful, |
| 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 # GNU General Public License for more details. | 11 # GNU General Public License for more details. |
| 12 # | 12 # |
| 13 # You should have received a copy of the GNU General Public License | 13 # You should have received a copy of the GNU General Public License |
| 14 # along with this program. If not, see <http://www.gnu.org/licenses/>. | 14 # along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 15 | 15 |
| 16 if $tracelevel then { | |
| 17 strace $tracelevel | |
| 18 } | |
| 19 | |
| 20 if {[is_remote target]} { | 16 if {[is_remote target]} { |
| 21 # RuntimeError: Could not find event thread | 17 # RuntimeError: Could not find event thread |
| 22 kfail "python/12966" "Run to breakpoint 1" | 18 kfail "python/12966" "Run to breakpoint 1" |
| 23 return -1 | 19 return -1 |
| 24 } | 20 } |
| 25 | 21 |
| 26 if { ![support_displaced_stepping] } { | 22 if { ![support_displaced_stepping] } { |
| 27 unsupported "displaced stepping" | 23 unsupported "displaced stepping" |
| 28 return -1 | 24 return -1 |
| 29 } | 25 } |
| 30 | 26 |
| 31 load_lib gdb-python.exp | 27 load_lib gdb-python.exp |
| 32 | 28 |
| 33 set testfile "py-evthreads" | 29 standard_testfile |
| 34 set srcfile ${testfile}.c | |
| 35 set binfile ${objdir}/${subdir}/${testfile} | |
| 36 set pyfile ${srcdir}/${subdir}/py-events.py | 30 set pyfile ${srcdir}/${subdir}/py-events.py |
| 37 | 31 |
| 38 if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executab
le {debug}] != "" } { | 32 if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executab
le {debug}] != "" } { |
| 39 return -1 | 33 return -1 |
| 40 } | 34 } |
| 41 clean_restart $testfile | 35 clean_restart $testfile |
| 42 | 36 |
| 43 if { [skip_python_tests] } { continue } | 37 if { [skip_python_tests] } { continue } |
| 44 | 38 |
| 45 gdb_test_no_output "python execfile ('${pyfile}')" "" | 39 gdb_test_no_output "python execfile ('${pyfile}')" "" |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 pass $test | 73 pass $test |
| 80 } | 74 } |
| 81 } | 75 } |
| 82 | 76 |
| 83 set test "thread 3 was signaled" | 77 set test "thread 3 was signaled" |
| 84 gdb_test_multiple "" $test { | 78 gdb_test_multiple "" $test { |
| 85 -re "event type: stop\r\nstop reason: signal\r\nstop signal: SIGUSR1\r\nthre
ad num: 3\r\nevent type: stop\r\n$" { | 79 -re "event type: stop\r\nstop reason: signal\r\nstop signal: SIGUSR1\r\nthre
ad num: 3\r\nevent type: stop\r\n$" { |
| 86 pass $test | 80 pass $test |
| 87 } | 81 } |
| 88 } | 82 } |
| OLD | NEW |