From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 54CDC3858037; Thu, 11 Jan 2024 11:43:50 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 54CDC3858037 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1704973430; bh=8DNpD/VumIDrXHlPOlH0Tyr+JcEOnSld/6AOdFhLSKc=; h=From:To:Subject:Date:In-Reply-To:References:From; b=WQTEgnMzkA52vAy+tlYCuJCMDpAIxl6sT3nKuu8lZ92Pf5keTKe9nUiavoZn51yP3 swScV4m6PjOjY6kHzATds5d+5XrMoCI1EoGdnmKPO0SZYWaOcTVDoSi6FMHlrTzQhP LRLzQ6V2lJlPdeKoXFxQ9kBU2ioRzJJyK+Ev9MIM= From: "vries at gcc dot gnu.org" To: gdb-prs@sourceware.org Subject: [Bug testsuite/31232] [gdb/testsuite, ppc64le] FAIL: gdb.dwarf2/dw2-entry-points.exp: bt foo Date: Thu, 11 Jan 2024 11:43:49 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gdb X-Bugzilla-Component: testsuite X-Bugzilla-Version: HEAD X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: vries at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at sourceware dot org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://sourceware.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://sourceware.org/bugzilla/show_bug.cgi?id=3D31232 --- Comment #1 from Tom de Vries --- Yep, the prologue skipper is activated. For powerpc, it walks past some instructions. For x86_64, it walks past no instructions. The test-case passes with: ... diff --git a/gdb/testsuite/gdb.dwarf2/dw2-entry-points.exp b/gdb/testsuite/gdb.dwarf2/dw2-entry-points.exp index f361820f72f..67d8f3e062e 100644 --- a/gdb/testsuite/gdb.dwarf2/dw2-entry-points.exp +++ b/gdb/testsuite/gdb.dwarf2/dw2-entry-points.exp @@ -180,8 +180,8 @@ if ![runto_main] { } # Try whether we can set and hit breakpoints at the entry_points. -gdb_breakpoint "foo" -gdb_breakpoint "foobar" +gdb_breakpoint "*foo" +gdb_breakpoint "*foobar" # Now hit the entry_point break point and check their call-stack. gdb_continue_to_breakpoint "foo" ... which disables prologue walking. --=20 You are receiving this mail because: You are on the CC list for the bug.=