diff mbox series

selftests/nolibc: split up architecture list in run-tests.sh

Message ID 20250211-nolibc-test-archs-v1-1-8e55aa3369cf@weissschuh.net (mailing list archive)
State New
Headers show
Series selftests/nolibc: split up architecture list in run-tests.sh | expand

Commit Message

Thomas Weißschuh Feb. 11, 2025, 11:03 a.m. UTC
The list is getting overly long and any modifications introduce a lot of
noise and are prone to conflicts. Split the string into a bash array
and break that into multiple lines.

Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
---
 tools/testing/selftests/nolibc/run-tests.sh | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)


---
base-commit: 665fa8dea90d9fbc0e7137c7e1315d6f7e15757e
change-id: 20250211-nolibc-test-archs-a5990cfc9e52

Best regards,

Comments

Thomas Weißschuh Feb. 12, 2025, 5:58 p.m. UTC | #1
FYI Willy,

On 2025-02-11 12:03:52+0100, Thomas Weißschuh wrote:
> The list is getting overly long and any modifications introduce a lot of
> noise and are prone to conflicts. Split the string into a bash array
> and break that into multiple lines.

I picked up this trivial change already.

> 
> Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
> ---
>  tools/testing/selftests/nolibc/run-tests.sh | 11 ++++++++++-
>  1 file changed, 10 insertions(+), 1 deletion(-)

<snip>
diff mbox series

Patch

diff --git a/tools/testing/selftests/nolibc/run-tests.sh b/tools/testing/selftests/nolibc/run-tests.sh
index bc4e92b4f1b98278a0a72345a5cd67f1a429b6a2..6db01115276888bc89f6ec5532153c37e55c83d3 100755
--- a/tools/testing/selftests/nolibc/run-tests.sh
+++ b/tools/testing/selftests/nolibc/run-tests.sh
@@ -17,7 +17,16 @@  perform_download=0
 test_mode=system
 werror=1
 llvm=
-archs="i386 x86_64 arm64 arm mips32le mips32be ppc ppc64 ppc64le riscv32 riscv64 s390 loongarch"
+all_archs=(
+	i386 x86_64
+	arm64 arm
+	mips32le mips32be
+	ppc ppc64 ppc64le
+	riscv32 riscv64
+	s390
+	loongarch
+)
+archs="${all_archs[@]}"
 
 TEMP=$(getopt -o 'j:d:c:b:a:m:pelh' -n "$0" -- "$@")