From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 8A4C21F5403 for ; Tue, 7 Jan 2025 19:42:48 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1736278968; cv=none; b=KS3MCABihDDpKQiSBV4hWkEYof+IdYdN93E1WuLzTOAlQ+mqf31R0hg+LZPXHXTQkHRlmYWWN+8K/kKDsLW6gN0vOFjpWSfelvBHH/L5bl3wT57JAoKrfahMzG6OqIdJkjUaUIx3iug1q7XJ/uYnde7APDHYZctgIxl9j+9k8js= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1736278968; c=relaxed/simple; bh=qfVbeHURH1jihr6xBiEtUuLYwytllskTXMEPuHL8J2U=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=P2gVL3Tkad6OPAH2Oe56xM422EwW2raTqJO/0/iUr4uI8SljgLb1Ivsnjk66WnKiSD3416DWuzdzIgSpwrijsVafnNA3dfkKATgMDPoBbDklua5Zu3s9wio2XEt7+aweoIm3ljEmn9HsWnFamEYG4nvBxzNXuP10kF4o7zjY5Bg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=e+lIOKve; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="e+lIOKve" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E8E5CC4CED6; Tue, 7 Jan 2025 19:42:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1736278968; bh=qfVbeHURH1jihr6xBiEtUuLYwytllskTXMEPuHL8J2U=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=e+lIOKveuZbtjko08wS1gkuYcLPtdxbsXLRq56XOfIgq3C6exfvP5Y16aIByP7IS1 O0YhILr9JxEaGAq8H933OFRlpQ9rPuLnvNQedIIgl2C9nrb2HaYe4IBS9IQCWYUPO+ yvvFHwfPJcTnIFle0zbXg0b3x4cYLFoNYcJTVMQeKrHqAZrmTSF75yv1+wKnyURnPE A37y5/+CdF6NeNn5kIRwprPJ/73qV/EBxv5r2/WQgeUMpS4QXkvhol7MXrq/6HWc4c lhMcUJK73mjrig0e+tQv6CWzF3q+TlhtXD/xanvZZZTS1190vLS11N7Zy/PYW7pPfv dJM+0DdtxVbbQ== Date: Tue, 7 Jan 2025 09:42:47 -1000 From: Tejun Heo To: Shizhao Chen Cc: David Vernet , linux-kernel@vger.kernel.org Subject: Re: [PATCH] sched_ext: Add option -l in selftest runner to list all available tests Message-ID: References: <20250107155411.153724-1-shichen@redhat.com> 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=us-ascii Content-Disposition: inline In-Reply-To: <20250107155411.153724-1-shichen@redhat.com> On Tue, Jan 07, 2025 at 11:52:19PM +0800, Shizhao Chen wrote: > The selftest runner currently allows selecting tests via the -t > option. This patch adds a new -l option that lists all available tests, > providing users with an overview of the tests they can choose from. This > enhancement is especially useful for scripting and automation purposes, > making it easier to discover and run tests. > > Signed-off-by: Shizhao Chen Applied to sched_ext/for-6.14. Thanks. -- tejun