From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from stravinsky.debian.org (stravinsky.debian.org [82.195.75.108]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id DF0D237F8BA; Mon, 13 Jul 2026 10:41:16 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=82.195.75.108 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783939278; cv=none; b=Mrt1w7J2lKvwUO4/u61wlCKtM3IokEffr6DUII7AsUf2g51npRFizHKTZOsOienxwrUfFtwAxk8xHkqxwFWvlGQb35obh9Lhw+OlI6fMPkWkkhrLE0SIrrq9BlPGVF9XyfoenVI9PHyqzepzwGvZnjqC4ls0De4lR8e+BX1OZ5s= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783939278; c=relaxed/simple; bh=ZKZ7XG7TpbyNrs4YixOL1bm5LrxH4B8fu7GTNJK782Y=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=Lz7Jgvv1+1mNhVq5lPxnWijEdFPaW6fMsbb/jSUxSj9ItLKzSGJH1WTT9sbIx+qhxtkGGsIHlL97FXKy6BrRj5ENynEZ5AwDnHi8ExJ652L/zlXgPGCVAwnDp/oDEu6eA3LXrvXtWbKfgm5NDDxIvR3Hbvl6LlnIkmsCJZ4s+uk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=debian.org; spf=pass smtp.mailfrom=debian.org; dkim=pass (2048-bit key) header.d=debian.org header.i=@debian.org header.b=l3g+Blii; arc=none smtp.client-ip=82.195.75.108 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=debian.org Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=debian.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=debian.org header.i=@debian.org header.b="l3g+Blii" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=debian.org; s=smtpauto.stravinsky; h=X-Debian-User:In-Reply-To:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=pvi0+VVen/SpVPKknVBEOhcrgfRrza0lNi9Dsqi3WKg=; b=l3g+BliisUFFeilqz8T8WXnh1E UfXu/fXiW2KBKnYYk6kJjxn6YWTixBdHww2vUfNwMQwby762aBK5Ih3I/ut7K7MqGb1dU1VuCl+mJ N7baseFZqmxI6sfqpmqtKnOOy/x/UfOTtq2C7QBV8990Uiw0UPFeYWb2pForp7E9FBI13se5yj3Z9 MOLIcfNFYYUtEWb9ISgY9LCpKxsrOaBNE0/jMlzJr6DdsWCApE7eGWQ1bgUqTb6bMqldMFqTJlwrh IzGTsLxaeBmPiIOrxiDUi18GvtfbLqA7Tjjp0vzZVLgb2Sr+jr05j1rTAwOQV9UA8u630Fjpjuk10 M4gTE6Fw==; Received: from authenticated-user by stravinsky.debian.org with esmtpsa (TLS1.3:ECDHE_X25519__RSA_PSS_RSAE_SHA256__AES_256_GCM:256) (Exim 4.96) (envelope-from ) id 1wjE61-001RVs-1f; Mon, 13 Jul 2026 10:41:09 +0000 Date: Mon, 13 Jul 2026 03:41:04 -0700 From: Breno Leitao To: "Matthieu Baerts (NGI0)" Cc: "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Simon Horman , Shuah Khan , netdev@vger.kernel.org, linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org, Andrew Lunn , Andre Carvalho Subject: Re: [PATCH net 7/7] selftests: netconsole: ignore busywait errors Message-ID: References: <20260710-net-sft-fix-containers-v1-0-a2915c294ef5@kernel.org> <20260710-net-sft-fix-containers-v1-7-a2915c294ef5@kernel.org> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20260710-net-sft-fix-containers-v1-7-a2915c294ef5@kernel.org> X-Debian-User: leitao On Fri, Jul 10, 2026 at 08:04:47PM +0200, Matthieu Baerts (NGI0) wrote: > In these netconsole tests, bash is used with errexit (set -e). It means > that if the busywait timeout, the tests finish without printing an error > message. > > It is fine to ignore these errors, because the following validate_xxx > helpers will check the content of the output file, and exit with an > appropriated error message, e.g. FAIL: File was not generated. Agreed, the validate functions will catch this and report it more appropriately. > Signed-off-by: Matthieu Baerts (NGI0) Reviewed-by: Breno Leitao