From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qk1-x736.google.com (mail-qk1-x736.google.com [IPv6:2607:f8b0:4864:20::736]) by sourceware.org (Postfix) with ESMTPS id A5BB3385782B for ; Mon, 12 Apr 2021 18:16:41 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org A5BB3385782B Received: by mail-qk1-x736.google.com with SMTP id x11so15161852qkp.11 for ; Mon, 12 Apr 2021 11:16:41 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:to:from:subject:message-id:date:user-agent :mime-version:content-language:content-transfer-encoding; bh=BNiIiv7+0KVjooAfVqeZuCcWpURTpzG2Y+rtI+biE8U=; b=B6rMhsafVJ2/tIgrODA1r3kSp9pJuxCDzb2lIsNU3kxJ+U+S9aiXLsfOaOSkmi4xkF pBOn76FS4G+cYGlyTXzr27OwDt/d7+lyzvjZAnyR6J1U2IsRQycn32MS/J2DUoGohkwE UJJ1UzO0LU4VCDGdu+rO4pUfxWUrgY/nr8pjc0aAVRsnNI0fAUWSJz+iKwg7QneDzo9l 5xKtB8nN8rVS7MSc74UdAYYLXhW+qBIeBnLLMIyRVdTQl8cSMijThhVhtCTTrRaJm6vi 1I/RVQbQuLTl4As4yZy8xPf8nbx422Ks/DEF71TScYmRrjEl2SYc3qp9rZ4zyZcERfRt r1Lg== X-Gm-Message-State: AOAM531RdEGa3n6UuwwSud6UGiFMeKRAuX/2liQv+65XgsOyyHaX2QXL fwnexyFpu/2BZxSIwtE0dbi4Gw== X-Google-Smtp-Source: ABdhPJy1Hc0Q14qWf4mFcGKG7rWM4AFcIt5rjd3aE5BFOgKgffLQ+s/TxVjtZS/iDXumxfcFDDjqzw== X-Received: by 2002:ae9:e884:: with SMTP id a126mr27934476qkg.444.1618251401213; Mon, 12 Apr 2021 11:16:41 -0700 (PDT) Received: from ?IPv6:2804:7f0:4841:2841:bdd4:355d:8be9:6e9f? ([2804:7f0:4841:2841:bdd4:355d:8be9:6e9f]) by smtp.gmail.com with ESMTPSA id o26sm8427056qko.83.2021.04.12.11.16.39 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Mon, 12 Apr 2021 11:16:40 -0700 (PDT) To: "gdb@sourceware.org" , jan.kratochvil@redhat.com From: Luis Machado Subject: Expected output of gdb.cp/no-dmgl-verbose.exp Message-ID: <3de907e5-c711-ab80-8b27-f7c13fbde7ec@linaro.org> Date: Mon, 12 Apr 2021 15:16:37 -0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.7.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-5.3 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gdb@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2021 18:16:42 -0000 I'm trying to determine why this particular test is failing (for both aarch64-linux and x86_64-linux on Ubuntu 18.04/20.04) and what the expected outcome is. In my case, the only symbol I see for function "f" is the following: "f(std::__cxx11::basic_string, std::allocator >)" There is no "f(std::string)" nor "f(std::basic_string, std::allocator >)" symbol. Given we've done quite a few changes to how demangling is applied and how we match the names, I wonder if this test is no longer meaningful. Does anyone know?