| 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 # This file is part of the gdb testsuite | 17 # This file is part of the gdb testsuite |
| 18 | 18 |
| 19 | 19 |
| 20 # pxdb.exp Test that gdb calls pxdb on an application | 20 # pxdb.exp Test that gdb calls pxdb on an application |
| 21 # built without it. | 21 # built without it. |
| 22 # | 22 # |
| 23 if $tracelevel then { | |
| 24 strace $tracelevel | |
| 25 } | |
| 26 | |
| 27 | 23 |
| 28 if { [skip_hp_tests] } then { continue } | 24 if { [skip_hp_tests] } then { continue } |
| 29 | 25 |
| 30 set testfile pxdb | 26 set testfile pxdb |
| 31 set srcfile ${testfile}.c | 27 set srcfile ${testfile}.c |
| 32 set objfile ${objdir}/${subdir}/${testfile}.o | 28 set objfile ${objdir}/${subdir}/${testfile}.o |
| 33 set binfile ${objdir}/${subdir}/${testfile} | 29 set binfile ${objdir}/${subdir}/${testfile} |
| 34 | 30 |
| 35 if [get_compiler_info ${binfile} "c++"] { | 31 if [get_compiler_info "c++"] { |
| 36 return -1; | 32 return -1; |
| 37 } | 33 } |
| 38 | 34 |
| 39 if { $gcc_compiled } then { continue } | 35 if { $gcc_compiled } then { continue } |
| 40 | 36 |
| 41 # To build a non-pxdb-ed file, use | 37 # To build a non-pxdb-ed file, use |
| 42 # | 38 # |
| 43 # <compile to .o file> | 39 # <compile to .o file> |
| 44 # export LD_PXDB /dev/null | 40 # export LD_PXDB /dev/null |
| 45 # ld -o hello_no_pxdb hello.o /opt/langtools/lib/end.o /usr/ccs/lib/crt0.o -
lc | 41 # ld -o hello_no_pxdb hello.o /opt/langtools/lib/end.o /usr/ccs/lib/crt0.o -
lc |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 timeout { fail "(timeout)" } | 110 timeout { fail "(timeout)" } |
| 115 } | 111 } |
| 116 | 112 |
| 117 gdb_exit | 113 gdb_exit |
| 118 return 0 | 114 return 0 |
| 119 | 115 |
| 120 | 116 |
| 121 | 117 |
| 122 | 118 |
| 123 | 119 |
| OLD | NEW |