Re: ld plugin bfd_make_readable leak
[binutils-gdb.git] / gdb / testsuite / gdb.arch / i386-attach-see-vdso.exp
blobdc757748332540e5850ad685d7400c523e637fa4
1 # Copyright 2024 Free Software Foundation, Inc.
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.
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.
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/>.
16 # Ensure that when we attach to an i386 process, which is stopped in
17 # the vDSO, we are able to get symbols for the vDSO region.
19 require {is_any_target "i?86-*-linux*" "x86_64-*-linux*"}
20 require can_spawn_for_attach
22 standard_testfile
24 set options {debug}
25 if {![istarget "i386-*-*"]} {
26     lappend options "additional_flags=-m32"
29 # The kernel VDSO is used for the syscalls returns only on i386 (not x86_64).
30 if { [build_executable "failed to prepare" $testfile $srcfile $options] } {
31     return -1
34 # Don't tell GDB which executable we're debugging.
35 clean_restart
37 # Start the test program ready for GDB to attach to it.
38 set test_spawn_id [spawn_wait_for_attach $binfile]
39 set testpid [spawn_id_get_pid $test_spawn_id]
41 # Attach GDB to the process.
42 gdb_test_multiple "attach $testpid" "attach to test process" {
43     -re -wrap "Attaching to process $testpid.*" {
44         pass $gdb_test_name
45     }
48 # The inferior will be stopped within the vDSO, check we get symbols
49 # for this address.
50 gdb_test "bt" "#0 *0x\[0-9a-f\]* in \[^?\]+\r\n#1\\s+.*" \
51     "backtrace decodes VDSO"
53 # Exit GDB and the spawned process.
54 gdb_exit
55 kill_wait_spawned_process $test_spawn_id