From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id CD9E9C4167D for ; Sun, 5 Nov 2023 09:27:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229618AbjKEJ13 (ORCPT ); Sun, 5 Nov 2023 04:27:29 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46342 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229447AbjKEJ11 (ORCPT ); Sun, 5 Nov 2023 04:27:27 -0500 Received: from 1wt.eu (ded1.1wt.eu [163.172.96.212]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 8292AB7; Sun, 5 Nov 2023 01:27:23 -0800 (PST) Received: (from willy@localhost) by mail.home.local (8.17.1/8.17.1/Submit) id 3A59R0i9002306; Sun, 5 Nov 2023 10:27:00 +0100 Date: Sun, 5 Nov 2023 10:27:00 +0100 From: Willy Tarreau To: Thomas =?iso-8859-1?Q?Wei=DFschuh?= Cc: Shuah Khan , Zhangjin Wu , Yuan Tan , linux-kernel@vger.kernel.org, linux-kselftest@vger.kernel.org Subject: Re: [PATCH] selftests/nolibc: add script to run testsuite Message-ID: References: <20231105-nolibc-run-tests-v1-1-b59ff770a978@weissschuh.net> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20231105-nolibc-run-tests-v1-1-b59ff770a978@weissschuh.net> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, Nov 05, 2023 at 10:23:05AM +0100, Thomas Weißschuh wrote: > The script can run the testsuite for multiple architectures and provides > an overall test report. > > Furthermore it can automatically download crosstools from > mirrors.kernel.org if requested by the user. > > Example execution: > > $ ./run-tests.sh > i386: 162 test(s): 162 passed, 0 skipped, 0 failed => status: success > x86_64: 162 test(s): 162 passed, 0 skipped, 0 failed => status: success > arm64: 162 test(s): 162 passed, 0 skipped, 0 failed => status: success > arm: 162 test(s): 162 passed, 0 skipped, 0 failed => status: success > mips: 162 test(s): 161 passed, 1 skipped, 0 failed => status: warning > ppc: 162 test(s): 162 passed, 0 skipped, 0 failed => status: success > ppc64: 162 test(s): 162 passed, 0 skipped, 0 failed => status: success > ppc64le: 162 test(s): 162 passed, 0 skipped, 0 failed => status: success > riscv: 162 test(s): 162 passed, 0 skipped, 0 failed => status: success > s390: 162 test(s): 161 passed, 1 skipped, 0 failed => status: warning > loongarch: 162 test(s): 161 passed, 1 skipped, 0 failed => status: warning > > Signed-off-by: Thomas Weißschuh > --- (...) Really nice, much cleaner than my old ugly scripts ;-) Thanks for this, Thomas! Acked-by: Willy Tarreau Willy