From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id YZs/A0Uu8Wn2ugEAWB0awg (envelope-from ) for ; Tue, 28 Apr 2026 18:01:41 -0400 Received: by simark.ca (Postfix, from userid 112) id EE2481E093; Tue, 28 Apr 2026 18:01:40 -0400 (EDT) X-Spam-Checker-Version: SpamAssassin 4.0.1 (2024-03-25) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-2.3 required=5.0 tests=ARC_SIGNED,ARC_VALID,BAYES_00, MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED, RCVD_IN_VALIDITY_CERTIFIED_BLOCKED,RCVD_IN_VALIDITY_RPBL_BLOCKED, RCVD_IN_VALIDITY_SAFE_BLOCKED autolearn=ham autolearn_force=no version=4.0.1 Received: from vm01.sourceware.org (vm01.sourceware.org [38.145.34.32]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature ECDSA (prime256v1) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 1DA5E1E093 for ; Tue, 28 Apr 2026 18:01:36 -0400 (EDT) Received: from vm01.sourceware.org (localhost [127.0.0.1]) by sourceware.org (Postfix) with ESMTP id 9998C4BBC0E4 for ; Tue, 28 Apr 2026 22:01:35 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 9998C4BBC0E4 Received: from angie.orcam.me.uk (angie.orcam.me.uk [78.133.224.34]) by sourceware.org (Postfix) with ESMTP id 4A7884B920C1 for ; Tue, 28 Apr 2026 22:01:05 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 4A7884B920C1 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=orcam.me.uk Authentication-Results: sourceware.org; spf=none smtp.mailfrom=orcam.me.uk ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 4A7884B920C1 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=78.133.224.34 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1777413665; cv=none; b=sCxj5cI0LrmKM9rXF2ldJHc8Ed2KielvmHBQiRdBnloQiaaqgQfBzDN1VHrfJI85UrW76p/f5ElzUIoD78N/JhGBaq5ReIiYv2o4nt7xxq0LEw66FWSA5Do6ux8C25L2ErPeYOf5eDMEEf2WzNXkAQNzmyCYZZfQsn+cvHN/4sk= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1777413665; c=relaxed/simple; bh=M5x+BQnJJhUyoRFdH5T+kWEU4m4emzan4KV5psELaDo=; h=Date:From:To:Subject:Message-ID:MIME-Version; b=jJMUDrz7OsxmuiCnzefpjPElmXpy7C+WiEUZovxhy++HwD3yvuJld99xtlS7zQR2R72WQn9jEO197goAElHIAmXo+APlYotM0SNP1SaC1WsDAH3UmuZlxcWkyv9/zShFn8gk/ho720Ynyf+891s5KEJ/4pdLIqW7DC5sGaThsdY= ARC-Authentication-Results: i=1; server2.sourceware.org DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 4A7884B920C1 Received: by angie.orcam.me.uk (Postfix, from userid 500) id 2F0C79200B4; Wed, 29 Apr 2026 00:01:04 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by angie.orcam.me.uk (Postfix) with ESMTP id 285CD92009D; Tue, 28 Apr 2026 23:01:04 +0100 (BST) Date: Tue, 28 Apr 2026 23:01:04 +0100 (BST) From: "Maciej W. Rozycki" To: Kevin Buettner cc: gdb-patches@sourceware.org Subject: Re: [PATCH] GDB/testsuite: Fix schedlock.exp crash due to empty $after_args In-Reply-To: <20260423190829.20992b53@f42-zbm-amd> Message-ID: References: <20260423190829.20992b53@f42-zbm-amd> User-Agent: Alpine 2.21 (DEB 202 2017-01-01) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.30 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: gdb-patches-bounces~public-inbox=simark.ca@sourceware.org On Thu, 23 Apr 2026, Kevin Buettner wrote: > > Prevent gdb.threads/schedlock.exp from crashing due to a premature exit > > of the debuggee causing an attempt to use a nil value as an arithmetic > > operand: [...] > > LGTM. Thanks for this fix. I have applied this change now, thank you for your review. Maciej