From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=simark.ca Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=simark.ca DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=simark.ca; s=mail; t=1687570813; bh=XRqmhwA9zhExIhVPvEytsrkRTthLGPasUVEWNaIbGEI=; h=Date:Subject:To:References:From:In-Reply-To:From; b=Li9Ugal7DtVQx2Zr62MmI+arr8b8oBf+lbYXBHIgvseoMl3Z+/ioS4zlDMYkj/OhW /5uMxdammq4A6FkgHMqcsw913UBPkW1Gdtc6nW3SkCAIoa1sVmRQLOyJEXOu03Y1rb mnKzglYBar258ZvpI//SVKkELye81ZRXigDMd0ss= 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> From: Simon Marchi 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 List-Id: 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