| OLD | NEW |
| 1 # Copyright 2004, 2007-2012 Free Software Foundation, Inc. | 1 # Copyright 2004, 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 # Test resolving of an opaque type from the loaded shared library. | 16 # Test resolving of an opaque type from the loaded shared library. |
| 17 | 17 |
| 18 if $tracelevel then { | |
| 19 strace $tracelevel | |
| 20 } | |
| 21 | |
| 22 set testfile type-opaque-main | 18 set testfile type-opaque-main |
| 23 set libfile type-opaque-lib | 19 set libfile type-opaque-lib |
| 24 set srcfile ${testfile}.c | 20 set srcfile ${testfile}.c |
| 25 set binfile ${objdir}/${subdir}/${testfile} | 21 set binfile ${objdir}/${subdir}/${testfile} |
| 26 | 22 |
| 27 set libsrc "${srcdir}/${subdir}/${libfile}.c" | 23 set libsrc "${srcdir}/${subdir}/${libfile}.c" |
| 28 set libobj "${objdir}/${subdir}/${libfile}.so" | 24 set libobj "${objdir}/${subdir}/${libfile}.so" |
| 29 set execsrc "${srcdir}/${subdir}/${srcfile}" | 25 set execsrc "${srcdir}/${subdir}/${srcfile}" |
| 30 | 26 |
| 31 remote_exec build "rm -f ${binfile}" | 27 remote_exec build "rm -f ${binfile}" |
| 32 | 28 |
| 33 # get the value of gcc_compiled | 29 # get the value of gcc_compiled |
| 34 if [get_compiler_info ${binfile}] { | 30 if [get_compiler_info] { |
| 35 return -1 | 31 return -1 |
| 36 } | 32 } |
| 37 | 33 |
| 38 if { [gdb_compile_shlib $libsrc $libobj {debug}] != "" | 34 if { [gdb_compile_shlib $libsrc $libobj {debug}] != "" |
| 39 || [gdb_compile $execsrc ${binfile} executable \ | 35 || [gdb_compile $execsrc ${binfile} executable \ |
| 40 [list debug shlib=${libobj}]] != "" } { | 36 [list debug shlib=${libobj}]] != "" } { |
| 41 return -1 | 37 return -1 |
| 42 } | 38 } |
| 43 | 39 |
| 44 gdb_exit | 40 gdb_exit |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 fail $name | 112 fail $name |
| 117 } | 113 } |
| 118 } | 114 } |
| 119 | 115 |
| 120 | 116 |
| 121 } | 117 } |
| 122 | 118 |
| 123 | 119 |
| 124 body struct | 120 body struct |
| 125 body union | 121 body union |
| OLD | NEW |