From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2205) id 35D6B384D179; Wed, 7 Sep 2022 07:59:16 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 35D6B384D179 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1662537556; bh=GwE5vv2Z8fHvl9QI9Ek7ZQ8yIhuHLSdJeLG2oFuw+Mk=; h=From:To:Subject:Date:From; b=HkxG0Eo7RszDW2GjFJEseqo6SCF9uJxjXmIP6OucL7y01g8XI4hbP9QGgMFxSIXYH UJLxlTJPx30TtfMTi8lbXeLH6ufZlFMf/eWRy9gSjJV8F+oOJja+1i/gMQQ/Hfr3HJ xEgNlKCRywSMSjlK4ZJvhllt5dn9SH8Kv3E8NzWQ= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Tom de Vries To: gdb-cvs@sourceware.org Subject: [binutils-gdb] [gdb/testsuite] Use prototype to call libc functions X-Act-Checkin: binutils-gdb X-Git-Author: Tom de Vries X-Git-Refname: refs/heads/master X-Git-Oldrev: f555b327d41ed72ffae28caae550f5f86312db43 X-Git-Newrev: 6d0aebbcff0636fb11fb26116ef7ae53ecca314f Message-Id: <20220907075916.35D6B384D179@sourceware.org> Date: Wed, 7 Sep 2022 07:59:16 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D6d0aebbcff06= 36fb11fb26116ef7ae53ecca314f commit 6d0aebbcff0636fb11fb26116ef7ae53ecca314f Author: Tom de Vries Date: Wed Sep 7 09:59:12 2022 +0200 [gdb/testsuite] Use prototype to call libc functions =20 On openSUSE Tumbleweed (using glibc 2.36), I run into: ... (gdb) print /d (int) munmap (4198400, 4096)^M Invalid cast.^M (gdb) FAIL: gdb.base/break-main-file-remove-fail.exp: cmdline: \ get integer valueof "(int) munmap (4198400, 4096)" ... =20 The problem is that after starting the executable, the symbol has type "void (*) (void)": ... (gdb) p munmap $1 =3D {} 0x401030 (gdb) start ... (gdb) p munmap $2 =3D {void (void)} 0x7ffff7feb9a0 <__GI_munmap> ... which causes the "Invalid cast" error. =20 Looking at the debug info for glibc for symbol __GI_munmap: ... <0><189683>: Abbrev Number: 1 (DW_TAG_compile_unit) <189691> DW_AT_name : ../sysdeps/unix/syscall-template.S <189699> DW_AT_producer : GNU AS 2.39.0 <1><1896ae>: Abbrev Number: 2 (DW_TAG_subprogram) <1896af> DW_AT_name : __GI___munmap <1896b3> DW_AT_external : 1 <1896b4> DW_AT_low_pc : 0x10cad0 <1896bc> DW_AT_high_pc : 37 ... that's probably caused by this bit (or similar bits for other munmap al= iases). =20 This is fixed in gas on trunk by commit 5578fbf672e ("GAS: Add a return= type tag to DWARF DIEs generated for function symbols"). =20 Work around this (for say gas 2.39) by explicitly specifying the protot= ype for munmap. =20 Likewise for getpid in a couple of other test-cases. =20 Tested on x86_64-linux. Diff: --- gdb/testsuite/gdb.base/break-main-file-remove-fail.exp | 4 +++- gdb/testsuite/gdb.base/dprintf-detach.exp | 2 +- gdb/testsuite/gdb.base/info-os.exp | 2 +- gdb/testsuite/gdb.threads/siginfo-threads.exp | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/gdb/testsuite/gdb.base/break-main-file-remove-fail.exp b/gdb/t= estsuite/gdb.base/break-main-file-remove-fail.exp index 41c3114aa05..444b1d33ace 100644 --- a/gdb/testsuite/gdb.base/break-main-file-remove-fail.exp +++ b/gdb/testsuite/gdb.base/break-main-file-remove-fail.exp @@ -87,7 +87,9 @@ proc test_remove_bp { initial_load } { # should warn the user about it. set pagesize [get_integer_valueof "pg_size" 0] set align_addr [expr $bp_addr - $bp_addr % $pagesize] - set munmap [get_integer_valueof "(int) munmap ($align_addr, $pagesize)" -= 1] + set munmap_prototype "int (*) (void *, size_t)" + set munmap_expr "(($munmap_prototype) munmap) ($align_addr, $pagesize)" + set munmap [get_integer_valueof $munmap_expr -1] =20 if {$munmap !=3D 0} { unsupported "can't munmap foo's page" diff --git a/gdb/testsuite/gdb.base/dprintf-detach.exp b/gdb/testsuite/gdb.= base/dprintf-detach.exp index 692048f82a3..b6da01a2845 100644 --- a/gdb/testsuite/gdb.base/dprintf-detach.exp +++ b/gdb/testsuite/gdb.base/dprintf-detach.exp @@ -52,7 +52,7 @@ proc dprintf_detach_test { breakpoint_always_inserted dpr= intf_style disconnected # Get PID of test program. set inferior_pid -1 set test "get inferior process ID" - gdb_test_multiple "call (int) getpid ()" $test { + gdb_test_multiple "call ((int (*) (void)) getpid) ()" $test { -re ".* =3D ($decimal).*$gdb_prompt $" { set inferior_pid $expect_out(1,string) pass $test diff --git a/gdb/testsuite/gdb.base/info-os.exp b/gdb/testsuite/gdb.base/in= fo-os.exp index 7967e2e43df..d12f8750a9c 100644 --- a/gdb/testsuite/gdb.base/info-os.exp +++ b/gdb/testsuite/gdb.base/info-os.exp @@ -39,7 +39,7 @@ if ![runto_main] then { # Get PID of test program. set inferior_pid "" set test "get inferior process ID" -gdb_test_multiple "call (int) getpid()" $test { +gdb_test_multiple "call ((int (*) (void)) getpid) ()" $test { -re ".* =3D ($decimal).*$gdb_prompt $" { set inferior_pid $expect_out(1,string) pass $test diff --git a/gdb/testsuite/gdb.threads/siginfo-threads.exp b/gdb/testsuite/= gdb.threads/siginfo-threads.exp index f10c7fdcd25..8dd34b753a2 100644 --- a/gdb/testsuite/gdb.threads/siginfo-threads.exp +++ b/gdb/testsuite/gdb.threads/siginfo-threads.exp @@ -41,7 +41,7 @@ gdb_breakpoint [gdb_get_line_number "break-at-exit"] =20 set test "get pid" set pid "" -gdb_test_multiple "p (int) getpid ()" $test { +gdb_test_multiple "p ((int (*) (void))getpid) ()" $test { -re " =3D (\[0-9\]+)\r\n$gdb_prompt $" { set pid $expect_out(1,string) pass $test