From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-f53.google.com (mail-wr1-f53.google.com [209.85.221.53]) by sourceware.org (Postfix) with ESMTPS id 1EA3F382D53A for ; Mon, 23 May 2022 12:53:35 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 1EA3F382D53A Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=palves.net Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gmail.com Received: by mail-wr1-f53.google.com with SMTP id f2so21272279wrc.0 for ; Mon, 23 May 2022 05:53:35 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:message-id:date:mime-version:user-agent:subject :content-language:to:cc:references:from:in-reply-to :content-transfer-encoding; bh=68pgpmcVPknecZv5hRFN0IOmfArEDdHjtDbi3Fqy3VM=; b=IR92T7xechTy8yuNZynvKa9BnD2HY07FN35Jg++B06wH0TAQBV+NlY60c3lJQO3cjd J/IFZ9olWW/OpyI5814EakAtjcoIEaFSewKOrQtI2FyhA2W3D62gtbFGuyUOi5TgxquC Y0Sr6jYBMnnztXXY3SXdSL40OtSHzMh1ShDjsVeTzXp7bH2+dMFM3xjKSAbxqbjXJXZ9 Ogtq1+Rw2XAhU1ocqLsYfMLxLSfJ5OrdBu8RM9tUpCfY0v2OxOhCCB7NrnODjj1e416s 72uFNVf9O3SyM+1i7Y5joCd1uolIaT3bRIBb1hqcNdX0I55eDAqJStNUi5FoKvjwa1aI /R4w== X-Gm-Message-State: AOAM530sV8nZF21NX2mG2udxqIknpHtAgtVMGjq6DyVdg0ACxeYwGdUZ NBdJdlAaw6MypYzSIOlMlrnuKnnLdws= X-Google-Smtp-Source: ABdhPJyg5e4DCH+IoD6qFlWwqDPTtYTUM1ng/dGfMmzXAdxAGUgdRGHrIsJIv1n5mqIyI8sM679RVw== X-Received: by 2002:a5d:47c2:0:b0:20f:c2fd:de3c with SMTP id o2-20020a5d47c2000000b0020fc2fdde3cmr11179915wrc.30.1653310413958; Mon, 23 May 2022 05:53:33 -0700 (PDT) Received: from ?IPV6:2001:8a0:f924:2600:209d:85e2:409e:8726? ([2001:8a0:f924:2600:209d:85e2:409e:8726]) by smtp.gmail.com with ESMTPSA id t3-20020a1c7703000000b0039749bab534sm3659711wmi.1.2022.05.23.05.53.32 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Mon, 23 May 2022 05:53:33 -0700 (PDT) Message-ID: Date: Mon, 23 May 2022 13:53:31 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.9.0 Subject: Re: [pushed] Support -prompt and -lbl in gdb_test (Re: [PATCH 5/5] Make gdb_test's question non-optional if specified) Content-Language: en-US To: Tom de Vries , Tom Tromey Cc: gdb-patches@sourceware.org References: <20220330192929.3161015-1-pedro@palves.net> <20220330192929.3161015-6-pedro@palves.net> <87o7zxeaa6.fsf@tromey.com> <87sfp7kc78.fsf@tromey.com> <8def622c-5396-d1e1-dfbb-a5732dd8183a@palves.net> From: Pedro Alves In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-5.6 required=5.0 tests=BAYES_00, FREEMAIL_FORGED_FROMDOMAIN, FREEMAIL_FROM, HEADER_FROM_DIFFERENT_DOMAINS, KAM_DMARC_STATUS, NICE_REPLY_A, RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H2, SPF_HELO_NONE, 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: , X-List-Received-Date: Mon, 23 May 2022 12:53:37 -0000 On 2022-05-23 13:01, Tom de Vries wrote: > On 5/23/22 12:48, Tom de Vries wrote: >> I'm assuming it's related to this change. > > That's confirmed, reproduces reliably with read1, and is fixed by reverting the patch. > > Looks like this in gdb_test: > ... >     lappend "-prompt $prompt" > ... > has no effect. Whoops... Sorry about this. > > This fixes it: Thanks, that's obviously OK. Please push.