| 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 | 25 set executable $testfile |
| 30 set executable while-dyn | |
| 31 set binfile $objdir/$subdir/$executable | |
| 32 if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \ | 26 if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \ |
| 33 executable {debug nowarnings}] != "" } { | 27 executable {debug nowarnings}] != "" } { |
| 34 untested while-dyn.exp | 28 untested while-dyn.exp |
| 35 return -1 | 29 return -1 |
| 36 } | 30 } |
| 37 gdb_load $binfile | 31 gdb_load $binfile |
| 38 gdb_test "tstop" ".*" "" | 32 gdb_test "tstop" ".*" "" |
| 39 gdb_test "tfind none" ".*" "" | 33 gdb_test "tfind none" ".*" "" |
| 40 runto_main | 34 runto_main |
| 41 gdb_reinitialize_dir $srcdir/$subdir | 35 gdb_reinitialize_dir $srcdir/$subdir |
| 42 | 36 |
| 43 # We generously give ourselves one "pass" if we successfully | |
| 44 # detect that this test cannot be run on this target! | |
| 45 if { ![gdb_target_supports_trace] } then { | 37 if { ![gdb_target_supports_trace] } then { |
| 46 pass "Current target does not support trace" | 38 unsupported "Current target does not support trace" |
| 47 return 1; | 39 return 1; |
| 48 } | 40 } |
| 49 | 41 |
| 50 # | 42 # |
| 51 # test while-stepping dynamically (live target) | 43 # test while-stepping dynamically (live target) |
| 52 # | 44 # |
| 53 | 45 |
| 54 if [is_amd64_regs_target] { | 46 if [is_amd64_regs_target] { |
| 55 set fpreg "\$rbp" | 47 set fpreg "\$rbp" |
| 56 } elseif [is_x86_like_target] { | 48 } elseif [is_x86_like_target] { |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 } | 100 } |
| 109 | 101 |
| 110 gdb_test "tfind none" ".*" "" | 102 gdb_test "tfind none" ".*" "" |
| 111 } | 103 } |
| 112 | 104 |
| 113 # Test all while-stepping aliases. | 105 # Test all while-stepping aliases. |
| 114 | 106 |
| 115 test_while_stepping "while-stepping" | 107 test_while_stepping "while-stepping" |
| 116 test_while_stepping "stepping" | 108 test_while_stepping "stepping" |
| 117 test_while_stepping "ws" | 109 test_while_stepping "ws" |
| OLD | NEW |