| OLD | NEW |
| 1 # Copyright 1998-1999, 2007-2012 Free Software Foundation, Inc. | 1 # Copyright 1998-1999, 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 | 23 |
| 28 set testfile "actions" | 24 standard_testfile actions.c |
| 29 set srcfile ${testfile}.c | |
| 30 set binfile $objdir/$subdir/deltrace | |
| 31 if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \ | 25 if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \ |
| 32 executable {debug nowarnings}] != "" } { | 26 executable {debug nowarnings}] != "" } { |
| 33 untested deltrace.exp | 27 untested deltrace.exp |
| 34 return -1 | 28 return -1 |
| 35 } | 29 } |
| 36 gdb_reinitialize_dir $srcdir/$subdir | 30 gdb_reinitialize_dir $srcdir/$subdir |
| 37 | 31 |
| 38 # If testing on a remote host, download the source file. | 32 # If testing on a remote host, download the source file. |
| 39 # remote_download host $srcdir/$subdir/$srcfile | 33 # remote_download host $srcdir/$subdir/$srcfile |
| 40 | 34 |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 "3.4: delete invalid tracepoint number" | 180 "3.4: delete invalid tracepoint number" |
| 187 | 181 |
| 188 # 3.5 delete tracepoint number zero | 182 # 3.5 delete tracepoint number zero |
| 189 gdb_test "delete tracepoint 0" "bad breakpoint number at or near '0'" \ | 183 gdb_test "delete tracepoint 0" "bad breakpoint number at or near '0'" \ |
| 190 "3.5: delete tracepoint number zero" | 184 "3.5: delete tracepoint number zero" |
| 191 | 185 |
| 192 # 3.6 help delete tracepoints | 186 # 3.6 help delete tracepoints |
| 193 gdb_test "help delete tracepoints" \ | 187 gdb_test "help delete tracepoints" \ |
| 194 "Delete specified tracepoints.*" \ | 188 "Delete specified tracepoints.*" \ |
| 195 "3.6: help delete tracepoints" | 189 "3.6: help delete tracepoints" |
| OLD | NEW |