|
| 1 | +# Copyright 2012 Free Software Foundation, Inc. |
| 2 | + |
| 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 |
| 5 | +# the Free Software Foundation; either version 3 of the License, or |
| 6 | +# (at your option) any later version. |
| 7 | +# |
| 8 | +# This program is distributed in the hope that it will be useful, |
| 9 | +# but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 | +# GNU General Public License for more details. |
| 12 | +# |
| 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/>. |
| 15 | + |
| 16 | +set testfile "set-solib-absolute-prefix" |
| 17 | +set srcfile ${testfile}.c |
| 18 | + |
| 19 | +# It is necessary to verify if the binary is 32-bit, so that the system |
| 20 | +# call `__kernel_vsyscall' originates from vDSO. |
| 21 | + |
| 22 | +if { ![is_ilp32_target] } { |
| 23 | + return -1 |
| 24 | +} |
| 25 | + |
| 26 | +if { [prepare_for_testing $testfile.exp $testfile $srcfile] } { |
| 27 | + return -1 |
| 28 | +} |
| 29 | + |
| 30 | +if { ![runto_main] } { |
| 31 | + return -1 |
| 32 | +} |
| 33 | + |
| 34 | +gdb_test "continue" "Program received signal SIGABRT, Aborted.*" \ |
| 35 | + "continue until abort" |
| 36 | +gdb_test "set solib-absolute-prefix /BOGUS_DIRECT" \ |
| 37 | + ".*warning: Unable to find dynamic linker breakpoint function.*" \ |
| 38 | + "set solib-absolute-prefix" |
| 39 | +gdb_test "bt" "__kernel_vsyscall.*" "backtrace with __kernel_vsyscall" |
0 commit comments