We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
TEST_FILTERS
1 parent 8ebfca1 commit 65b0b48Copy full SHA for 65b0b48
test/scripts/test-utils.sh
@@ -254,6 +254,7 @@ function run_tests_for_os {
254
package_dir=$(get_package_dir)
255
local test_dir
256
test_dir=$(get_test_utls_dir)/..
257
+ read -ra test_filters_arg <<<"${TEST_FILTERS:-}" # Split the string by words into an array
258
pushd "$test_dir"
259
if ! RUST_LOG_STYLE=always cargo run --bin test-manager \
260
run-tests \
@@ -263,7 +264,7 @@ function run_tests_for_os {
263
264
"${test_report_arg[@]}" \
265
--package-dir "${package_dir}" \
266
--vm "$vm" \
- "${TEST_FILTERS:-}" \
267
+ "${test_filters_arg[@]}" \
268
2>&1 | sed -r "s/${ACCOUNT_TOKEN}/\{ACCOUNT_TOKEN\}/g"; then
269
echo "Test run failed"
270
exit 1
0 commit comments