From 40bf8177499f49fe3e4aa649ed8d43b1e1b514d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 18 Feb 2025 20:26:03 +0100 Subject: [PATCH] toolbox/meson-test: Quote arguments Without the quotes, arguments are subject to word splitting. That is, it is currently not possible to run a test with spaces in its name. Part-of: --- tools/toolbox/meson-test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/toolbox/meson-test.sh b/tools/toolbox/meson-test.sh index 72631c25b..76f0748fb 100755 --- a/tools/toolbox/meson-test.sh +++ b/tools/toolbox/meson-test.sh @@ -105,4 +105,4 @@ find_toplevel BUILD_DIR=build-$TOOLBOX toolbox run --container $TOOLBOX \ - meson test -C $BUILD_DIR ${MESON_ARGS[*]} $@ + meson test -C $BUILD_DIR ${MESON_ARGS[*]} "$@"