From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mta1.formilux.org (mta1.formilux.org [51.159.59.229]) (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 62F9934C98C for ; Tue, 7 Apr 2026 07:21:19 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=51.159.59.229 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775546480; cv=none; b=VuSFH/ekFNdpcPI7R8Nk3PMwxTfryLot0dYuphu2tdf8nmymMfM9Wv0jUO0qLujYR99yPo6lxcWgEgHpqIkFVMQ2wqKU2F9Y/eBoMtay9CLvL38FrwDWnz7q/j707qUgGGstKCwuwI4M83AFLS3uaDhLTM94PhiIyIxUEuqnpP0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775546480; c=relaxed/simple; bh=HIPy9pNEaQvfxt0PmGJzvAMP8+C/FKzjN7cGhIAm8iw=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=uEypoStcSZXwBTRp9BEXz6P+rYMmZvJG/5NQmVsX5Dr5JX84XrnEHD7Pcu0sN2Ig7QJmw2Wi+aOYN/ZS0iu6kY5m2YInmazdJ/J+KjMCjZG0sQpnsjQ/YFBaa/t9dVJHJnq458N9xPbgYxNyaVr//s8buXr/6QpdmzG3KXOuSQw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=1wt.eu; spf=pass smtp.mailfrom=1wt.eu; dkim=pass (1024-bit key) header.d=1wt.eu header.i=@1wt.eu header.b=qnK/kc5U; arc=none smtp.client-ip=51.159.59.229 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=1wt.eu Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=1wt.eu Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=1wt.eu header.i=@1wt.eu header.b="qnK/kc5U" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1wt.eu; s=mail; t=1775546477; bh=8fr8NOjjn1X+x/xAPjds98NBzTTmqvqcGtyIOthYgxI=; h=From:Message-ID:From; b=qnK/kc5UhrgftHgS4D0YqtRDPQyoMWJN5QXUSAmttF6IGrAMYYFMwsAHM7MtnW/xK YSiUgHTfwauGm726AK5oBUYZ2tdDcUE7/1fiAhYFPdw6ROwzvwkl3qyvxx7jvWlziq BcTGqpyPlrPUg8Y/fP5fzx218LEStmea0C/uWa8s= Received: from 1wt.eu (ded1.1wt.eu [163.172.96.212]) by mta1.formilux.org (Postfix) with ESMTP id B5477C0A92; Tue, 07 Apr 2026 09:21:17 +0200 (CEST) Date: Tue, 7 Apr 2026 09:21:17 +0200 From: Willy Tarreau To: Thomas =?iso-8859-1?Q?Wei=DFschuh?= Cc: linux-kernel@vger.kernel.org Subject: Re: [PATCH 0/2] selftests/nolibc: don't skip tests for unimplemented syscalls anymore Message-ID: References: <20260406-nolibc-no-skip-enosys-v1-0-c046b1ac7d73@weissschuh.net> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20260406-nolibc-no-skip-enosys-v1-0-c046b1ac7d73@weissschuh.net> On Mon, Apr 06, 2026 at 10:02:36PM +0200, Thomas Weißschuh wrote: > The automatic skipping of tests on ENOSYS returns was introduced in > commit 349afc8a52f8 ("selftests/nolibc: skip tests for unimplemented > syscalls"). It handled the fact that nolibc would return ENOSYS for many > syscall wrappers on riscv32. > > Signed-off-by: Thomas Weißschuh Acked-by: Willy Tarreau thanks! Willy