| 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 | 23 |
| 28 set testfile "actions" | 24 standard_testfile actions.c |
| 29 set srcfile ${testfile}.c | |
| 30 set binfile $objdir/$subdir/backtrace | |
| 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 backtrace.exp | 27 untested backtrace.exp |
| 34 return -1 | 28 return -1 |
| 35 } | 29 } |
| 36 gdb_load $binfile | 30 gdb_load $binfile |
| 37 gdb_test "tstop" ".*" "" | 31 gdb_test "tstop" ".*" "" |
| 38 gdb_test "tfind none" ".*" "" | 32 gdb_test "tfind none" ".*" "" |
| 39 runto_main | 33 runto_main |
| 40 gdb_reinitialize_dir $srcdir/$subdir | 34 gdb_reinitialize_dir $srcdir/$subdir |
| 41 | 35 |
| 42 # We generously give ourselves one "pass" if we successfully | |
| 43 # detect that this test cannot be run on this target! | |
| 44 if { ![gdb_target_supports_trace] } then { | 36 if { ![gdb_target_supports_trace] } then { |
| 45 pass "Current target does not support trace" | 37 unsupported "Current target does not support trace" |
| 46 return 1; | 38 return 1; |
| 47 | 39 |
| 48 } | 40 } |
| 49 | 41 |
| 50 # | 42 # |
| 51 # test backtraces in trace frames | 43 # test backtraces in trace frames |
| 52 # | 44 # |
| 53 | 45 |
| 54 set testline1 0 | 46 set testline1 0 |
| 55 set testline2 0 | 47 set testline2 0 |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 gdb_test "printf \"TDP \%d:\\n\", \$tracepoint" \ | 323 gdb_test "printf \"TDP \%d:\\n\", \$tracepoint" \ |
| 332 "TDP $tdp6:" "" | 324 "TDP $tdp6:" "" |
| 333 gdb_backtrace_tdp_4 "8.6: Backtrace, depth == 1, collect stack mem expr" "0" | 325 gdb_backtrace_tdp_4 "8.6: Backtrace, depth == 1, collect stack mem expr" "0" |
| 334 | 326 |
| 335 gdb_test "printf \"x \%d x\\n\", depth == 3" \ | 327 gdb_test "printf \"x \%d x\\n\", depth == 3" \ |
| 336 "x 0 x" \ | 328 "x 0 x" \ |
| 337 "1.13: trace in recursion: depth not equal to 3" | 329 "1.13: trace in recursion: depth not equal to 3" |
| 338 | 330 |
| 339 # Finished! | 331 # Finished! |
| 340 gdb_test "tfind none" ".*" "" | 332 gdb_test "tfind none" ".*" "" |
| OLD | NEW |