Skip to content

Commit

Permalink
test_e2e.sh: use mapfile to split command output
Browse files Browse the repository at this point in the history
Fixes SC2207. Part of #891.
  • Loading branch information
rul authored and thockin committed Jun 24, 2024
1 parent 81bb72f commit 9b980c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test_e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3417,7 +3417,7 @@ function list_tests() {
}

# Figure out which, if any, tests to run.
all_tests=($(list_tests))
mapfile -t all_tests < <(list_tests)
tests_to_run=()

function print_tests() {
Expand Down

0 comments on commit 9b980c4

Please sign in to comment.