public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
From: Alexandre Oliva <aoliva@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org
Subject: [gcc(refs/users/aoliva/heads/testme)] [libstdc++] [prettyprint] add local std::string use to more tests
Date: Fri,  3 Mar 2023 13:11:21 +0000 (GMT)	[thread overview]
Message-ID: <20230303131121.93FAA38582BD@sourceware.org> (raw)

https://gcc.gnu.org/g:eea3ffc800cc5f15d0f73a3ee7ea78d7ffdb84c5

commit eea3ffc800cc5f15d0f73a3ee7ea78d7ffdb84c5
Author: Alexandre Oliva <oliva@adacore.com>
Date:   Fri Mar 3 10:10:23 2023 -0300

    [libstdc++] [prettyprint] add local std::string use to more tests
    
    We're getting regressions after ugprading to GDB 13 in a few of the
    libstdc++ pretty-printing tests.  It might seem like a GDB regression,
    but that update has a new symbol reader, and Tom Tromey says it
    exposes a latent problem in the pretty-printer, namely, when a name is
    not defined locally in the local translation unit, GDB will look for
    it in other units, and if multiple different definitions are
    available, there are no guarantees as to which one it will find.
    
    Since libstdc++ contains units in which std::string maps to different
    types, in order to ensure the tests get the std::string definition we
    expect, we need std::string to be present in the debug information for
    the test itself, as we already do in other tests.
    
    
    for  libstdc++-v3/ChangeLog
    
            * testsuite/libstdc++-pretty-printers/80276.cc: Add
            std::string to debug info.
            * testsuite/libstdc++-pretty-printers/libfundts.cc: Likewise.
    
    
    Change-Id: I928617d44679c63d634c26f6db17d7580a9bcd8f
    TN: W223-034

Diff:
---
 libstdc++-v3/testsuite/libstdc++-prettyprinters/80276.cc     | 5 +++++
 libstdc++-v3/testsuite/libstdc++-prettyprinters/libfundts.cc | 6 ++++++
 2 files changed, 11 insertions(+)

diff --git a/libstdc++-v3/testsuite/libstdc++-prettyprinters/80276.cc b/libstdc++-v3/testsuite/libstdc++-prettyprinters/80276.cc
index db4de593808..1d6b0207106 100644
--- a/libstdc++-v3/testsuite/libstdc++-prettyprinters/80276.cc
+++ b/libstdc++-v3/testsuite/libstdc++-prettyprinters/80276.cc
@@ -36,6 +36,11 @@ int
 main()
 {
   using namespace std;
+  // Ensure debug info for std::string is issued in the local
+  // translation unit, so that GDB won't pick up any alternate
+  // std::string notion that might be present in libstdc++.so.
+  string bah = "hi";
+  (void)bah;
   unique_ptr<vector<unique_ptr<vector<int>*>>> p1;
   unique_ptr<vector<unique_ptr<set<int>*>>[]> p2;
   unique_ptr<set<unique_ptr<vector<int>*>>[10]> p3;
diff --git a/libstdc++-v3/testsuite/libstdc++-prettyprinters/libfundts.cc b/libstdc++-v3/testsuite/libstdc++-prettyprinters/libfundts.cc
index b1c91033cc8..29e8bc8f194 100644
--- a/libstdc++-v3/testsuite/libstdc++-prettyprinters/libfundts.cc
+++ b/libstdc++-v3/testsuite/libstdc++-prettyprinters/libfundts.cc
@@ -32,6 +32,12 @@ using std::experimental::string_view;
 int
 main()
 {
+  // Ensure debug info for std::string is issued in the local
+  // translation unit, so that GDB won't pick up any alternate
+  // std::string notion that might be present in libstdc++.so.
+  std::string bah = "hi";
+  (void)bah;
+
   string_view str = "string";
 // { dg-final { note-test str "\"string\"" } }

             reply	other threads:[~2023-03-03 13:11 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-03 13:11 Alexandre Oliva [this message]
2023-03-03 18:47 Alexandre Oliva

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=20230303131121.93FAA38582BD@sourceware.org \
    --to=aoliva@gcc.gnu.org \
    --cc=gcc-cvs@gcc.gnu.org \
    --cc=libstdc++-cvs@gcc.gnu.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).