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: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3641>
This commit is contained in:
Florian Müllner 2025-02-18 20:26:03 +01:00 committed by Bruce Leidl
parent c9c6b46afc
commit 40bf817749

View File

@ -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[*]} "$@"