| OLD | NEW |
| 1 # Copyright 2001, 2003, 2007-2012 Free Software Foundation, Inc. | 1 # Copyright 2001, 2003, 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 # use this to debug: | 16 # use this to debug: |
| 17 # | 17 # |
| 18 #log_user 1 | 18 #log_user 1 |
| 19 | 19 |
| 20 # step-line.exp -- Expect script to test stepping in files with | 20 # step-line.exp -- Expect script to test stepping in files with |
| 21 # #line directives. | 21 # #line directives. |
| 22 | 22 |
| 23 if $tracelevel then { | |
| 24 strace $tracelevel | |
| 25 } | |
| 26 | |
| 27 set testfile step-line | 23 set testfile step-line |
| 28 set srcfile ${testfile}.c | 24 set srcfile ${testfile}.c |
| 29 set linefile ${testfile}.inp | 25 set linefile ${testfile}.inp |
| 30 set binfile ${objdir}/${subdir}/${testfile} | 26 set binfile ${objdir}/${subdir}/${testfile} |
| 31 | 27 |
| 32 remote_exec build "rm -f ${binfile}" | 28 remote_exec build "rm -f ${binfile}" |
| 33 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debu
g}] != "" } { | 29 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debu
g}] != "" } { |
| 34 untested step-line.exp | 30 untested step-line.exp |
| 35 return -1 | 31 return -1 |
| 36 } | 32 } |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 gdb_test "next" \ | 86 gdb_test "next" \ |
| 91 ".*dummy \\(10, j\\);.*" \ | 87 ".*dummy \\(10, j\\);.*" \ |
| 92 "next to dummy 10" | 88 "next to dummy 10" |
| 93 gdb_test "next" \ | 89 gdb_test "next" \ |
| 94 ".*RETURN \\(j\\);.*" \ | 90 ".*RETURN \\(j\\);.*" \ |
| 95 "next over dummy 10" | 91 "next over dummy 10" |
| 96 | 92 |
| 97 remote_file host delete ${remote_linefile} | 93 remote_file host delete ${remote_linefile} |
| 98 | 94 |
| 99 return 0 | 95 return 0 |
| OLD | NEW |