| OLD | NEW |
| 1 # Copyright 1998, 2007-2012 Free Software Foundation, Inc. | 1 # Copyright 1998, 2007-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 # This file was written by Michael Snyder (msnyder@cygnus.com) | 16 # This file was written by Michael Snyder (msnyder@cygnus.com) |
| 17 | 17 |
| 18 load_lib "trace-support.exp"; | 18 load_lib "trace-support.exp"; |
| 19 | 19 |
| 20 if $tracelevel then { | |
| 21 strace $tracelevel | |
| 22 } | |
| 23 | |
| 24 | 20 |
| 25 gdb_exit | 21 gdb_exit |
| 26 gdb_start | 22 gdb_start |
| 27 set testfile "actions" | 23 standard_testfile actions.c |
| 28 set srcfile ${testfile}.c | |
| 29 set binfile $objdir/$subdir/tracecmd | |
| 30 if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \ | 24 if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \ |
| 31 executable {debug nowarnings}] != "" } { | 25 executable {debug nowarnings}] != "" } { |
| 32 untested tracecmd.exp | 26 untested tracecmd.exp |
| 33 return -1 | 27 return -1 |
| 34 } | 28 } |
| 35 gdb_reinitialize_dir $srcdir/$subdir | 29 gdb_reinitialize_dir $srcdir/$subdir |
| 36 | 30 |
| 37 # If testing on a remote host, download the source file. | 31 # If testing on a remote host, download the source file. |
| 38 # remote_download host $srcdir/$subdir/$srcfile | 32 # remote_download host $srcdir/$subdir/$srcfile |
| 39 | 33 |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 | 157 |
| 164 # Acceptance vs rejection of a location are target-specific, so allow both. | 158 # Acceptance vs rejection of a location are target-specific, so allow both. |
| 165 gdb_test_multiple "ftrace gdb_recursion_test" "Set a fast tracepoint" { | 159 gdb_test_multiple "ftrace gdb_recursion_test" "Set a fast tracepoint" { |
| 166 -re "Fast tracepoint $decimal at $hex: file.*$srcfile, line $testline1.*$gdb
_prompt $" { | 160 -re "Fast tracepoint $decimal at $hex: file.*$srcfile, line $testline1.*$gdb
_prompt $" { |
| 167 pass "Set a fast tracepoint" | 161 pass "Set a fast tracepoint" |
| 168 } | 162 } |
| 169 -re ".*May not have a fast tracepoint at $hex.*$gdb_prompt $" { | 163 -re ".*May not have a fast tracepoint at $hex.*$gdb_prompt $" { |
| 170 pass "Declined to set a fast tracepoint" | 164 pass "Declined to set a fast tracepoint" |
| 171 } | 165 } |
| 172 } | 166 } |
| OLD | NEW |