Merge pull request #1383 from flatcar/t-lo/fix-run-tests-quoting

run_local_tests.sh: unquote tests var so lists and kola options can pass
This commit is contained in:
Thilo Fromm 2023-11-13 09:11:18 +01:00 committed by GitHub
commit e95b444607
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -104,7 +104,7 @@ function run_local_tests() (
if [[ -n "${tests}" ]] ; then if [[ -n "${tests}" ]] ; then
echo "=================================" echo "================================="
echo "Running qemu_uefi tests" echo "Running qemu_uefi tests"
test_run "${arch}" qemu_uefi "${tests}" test_run "${arch}" qemu_uefi ${tests}
fi fi
if ${update_tests} ; then if ${update_tests} ; then