| OLD | NEW |
| 1 # Copyright (C) 1998, 2007-2012 Free Software Foundation, Inc. | 1 # Copyright (C) 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 | 16 |
| 17 if $tracelevel then { | |
| 18 strace $tracelevel | |
| 19 } | |
| 20 | |
| 21 if { [skip_hp_tests] } then { continue } | 17 if { [skip_hp_tests] } then { continue } |
| 22 | 18 |
| 23 set testfile1 "average" | 19 set testfile1 "average" |
| 24 set testfile2 "sum" | 20 set testfile2 "sum" |
| 25 set testfile "xdb-test" | 21 set testfile "xdb-test" |
| 26 set binfile1 ${objdir}/${subdir}/${testfile1} | 22 set binfile1 ${objdir}/${subdir}/${testfile1} |
| 27 set binfile2 ${objdir}/${subdir}/${testfile2} | 23 set binfile2 ${objdir}/${subdir}/${testfile2} |
| 28 set binfile ${objdir}/${subdir}/${testfile} | 24 set binfile ${objdir}/${subdir}/${testfile} |
| 29 | 25 |
| 30 if { [gdb_compile "${srcdir}/${subdir}/average.c" "${binfile1}.o" object {debug
}] != "" } { | 26 if { [gdb_compile "${srcdir}/${subdir}/average.c" "${binfile1}.o" object {debug
}] != "" } { |
| 31 untested xdb3.exp | 27 untested xdb3.exp |
| 32 return -1 | 28 return -1 |
| 33 } | 29 } |
| 34 | 30 |
| 35 if { [gdb_compile "${srcdir}/${subdir}/sum.c" "${binfile2}.o" object {debug}] !
= "" } { | 31 if { [gdb_compile "${srcdir}/${subdir}/sum.c" "${binfile2}.o" object {debug}] !
= "" } { |
| 36 untested xdb3.exp | 32 untested xdb3.exp |
| 37 return -1 | 33 return -1 |
| 38 } | 34 } |
| 39 | 35 |
| 40 if { [gdb_compile "${binfile1}.o ${binfile2}.o" ${binfile} executable {debug}]
!= "" } { | 36 if { [gdb_compile "${binfile1}.o ${binfile2}.o" ${binfile} executable {debug}]
!= "" } { |
| 41 untested xdb3.exp | 37 untested xdb3.exp |
| 42 return -1 | 38 return -1 |
| 43 } | 39 } |
| 44 | 40 |
| 45 if [get_compiler_info ${binfile}] { | 41 if [get_compiler_info] { |
| 46 return -1; | 42 return -1; |
| 47 } | 43 } |
| 48 if { $gcc_compiled } then { continue } | 44 if { $gcc_compiled } then { continue } |
| 49 | 45 |
| 50 | 46 |
| 51 proc xdb_reinitialize_dir { subdir } { | 47 proc xdb_reinitialize_dir { subdir } { |
| 52 global gdb_prompt | 48 global gdb_prompt |
| 53 | 49 |
| 54 send_gdb "D\n" | 50 send_gdb "D\n" |
| 55 gdb_expect { | 51 gdb_expect { |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 | 307 |
| 312 set GDBFLAGS $saved_gdbflags | 308 set GDBFLAGS $saved_gdbflags |
| 313 | 309 |
| 314 return 0 | 310 return 0 |
| 315 | 311 |
| 316 | 312 |
| 317 | 313 |
| 318 | 314 |
| 319 | 315 |
| 320 | 316 |
| OLD | NEW |