public inbox for gdb-cvs@sourceware.org
help / color / mirror / Atom feed
From: Tom de Vries <vries@sourceware.org>
To: gdb-cvs@sourceware.org
Subject: [binutils-gdb] [gdb/testsuite] Fix timeout in gdb.ada/ghost.exp
Date: Fri, 10 Jun 2022 06:46:21 +0000 (GMT)	[thread overview]
Message-ID: <20220610064621.0A91D384604C@sourceware.org> (raw)

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=84860e85919f7f09328ae1f84303435ff2e6ee64

commit 84860e85919f7f09328ae1f84303435ff2e6ee64
Author: Tom de Vries <tdevries@suse.de>
Date:   Fri Jun 10 08:46:17 2022 +0200

    [gdb/testsuite] Fix timeout in gdb.ada/ghost.exp
    
    On openSUSE Tumbleweed with gcc-12, I run into a timeout:
    ...
    (gdb) print value^M
    Multiple matches for value^M
    [0] cancel^M
    [1] ada.strings.maps.value (<ref> ada.strings.maps.character_mapping; \
        character) return character at a-strmap.adb:599^M
    [2] pck.value at src/gdb/testsuite/gdb.ada/ghost/pck.ads:17^M
    [3] system.object_reader.value (<ref> system.object_reader.object_symbol) \
        return system.object_reader.uint64 at s-objrea.adb:2279^M
    [4] system.traceback.symbolic.value (system.address) return string at \
        s-trasym.adb:200^M
    > FAIL: gdb.ada/ghost.exp: print value (timeout)
    print ghost_value^M
    Argument must be choice number^M
    (gdb) FAIL: gdb.ada/ghost.exp: print ghost_value
    ...
    
    Fix this by prefixing value (as well as the other printed values) with the
    package name:
    ...
    (gdb) print pck.value^M
    ...
    
    Tested on x86_64-linux.
    
    Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=29055

Diff:
---
 gdb/testsuite/gdb.ada/ghost.exp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gdb/testsuite/gdb.ada/ghost.exp b/gdb/testsuite/gdb.ada/ghost.exp
index 7f92b130eff..ece03dbe2f8 100644
--- a/gdb/testsuite/gdb.ada/ghost.exp
+++ b/gdb/testsuite/gdb.ada/ghost.exp
@@ -32,6 +32,6 @@ if ![runto "main.adb:$bp_location" ] then {
   return
 }
 
-gdb_test "print value" " = 64 '@'"
-gdb_test "print ghost_value" " = 64 '@'"
-gdb_test "print value2" " = 33 '!'"
+gdb_test "print pck.value" " = 64 '@'"
+gdb_test "print pck.ghost_value" " = 64 '@'"
+gdb_test "print gpck.value2" " = 33 '!'"


                 reply	other threads:[~2022-06-10  6:46 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220610064621.0A91D384604C@sourceware.org \
    --to=vries@sourceware.org \
    --cc=gdb-cvs@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).