From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id VErBCJlJlmTTLgwAWB0awg (envelope-from ) for ; Fri, 23 Jun 2023 21:40:41 -0400 Authentication-Results: simark.ca; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.a=rsa-sha256 header.s=default header.b=PTP1yzMN; dkim-atps=neutral Received: by simark.ca (Postfix, from userid 112) id 171E81E0BB; Fri, 23 Jun 2023 21:40:41 -0400 (EDT) Received: from sourceware.org (ip-8-43-85-97.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 033CC1E00F for ; Fri, 23 Jun 2023 21:40:39 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 67FF33858017 for ; Sat, 24 Jun 2023 01:40:38 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 67FF33858017 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1687570838; bh=LJ5KJci61NH6dNd0eoRaT/GB0+ZlaWHHa/QRUvg3jsE=; h=Date:Subject:To:References:In-Reply-To:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=PTP1yzMNHH4l4pnY6EcyDBmjDAO/UGWFmPCqRQ3eKL6XmFz9Oe0+2FoI82oi5fBeX 00byYI+mMJE+kL96g2SkGaxMtYJe479yPWSYds1YwiXQy1czMQhf97RyZvu6udU2Y2 EiX/dHAGuMJgfO9tzGt5p9nBiALE8gBpYBwxVekQ= Received: from simark.ca (simark.ca [158.69.221.121]) by sourceware.org (Postfix) with ESMTPS id E5E4A3858000 for ; Sat, 24 Jun 2023 01:40:13 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org E5E4A3858000 Received: from [10.0.0.11] (modemcable238.237-201-24.mc.videotron.ca [24.201.237.238]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPSA id 2EB401E00F; Fri, 23 Jun 2023 21:40:13 -0400 (EDT) Message-ID: <5a23ac6b-a6d9-895d-e379-353d94220cf7@simark.ca> Date: Fri, 23 Jun 2023 21:40:12 -0400 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.12.0 Subject: Re: [PATCH v2 2/8] Use gdb::byte_vector in agent_expr Content-Language: en-US To: Tom Tromey , gdb-patches@sourceware.org References: <20230619-ax-new-v2-0-47638d750dd7@tromey.com> <20230619-ax-new-v2-2-47638d750dd7@tromey.com> In-Reply-To: <20230619-ax-new-v2-2-47638d750dd7@tromey.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-4.0 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, NICE_REPLY_A, SPF_HELO_PASS, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Simon Marchi via Gdb-patches Reply-To: Simon Marchi Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" On 6/20/23 13:36, Tom Tromey wrote: > This changes agent_expr to use gdb::byte_vector rather than manually > reimplementing a vector. Hi Tom, Starting with this commit, I see failures in gdb.trace/entry-values.exp, using the native-gdbserver board. I also see these failures, which are likely related, but I haven't checked them all: - gdb.trace/backtrace.exp - gdb.trace/collection.exp - gdb.trace/unavailable.exp Simon