Skip to content

Commit c20eedc

Browse files
committed
fix filename issue
1 parent 4f00dae commit c20eedc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.kokoro/system.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ if [ -n "$PACKAGES_TO_TEST" ]; then
151151
export -f run_package_test
152152
export system_test_script PROJECT_ROOT KOKORO_GFILE_DIR
153153

154-
echo "$PACKAGES_TO_TEST" | xargs -n 1 -P 8 -I {} bash -c 'run_package_test "{}" > ".logs/{}.log" 2>&1 || touch ".logs/{}.failed"'
154+
echo "$PACKAGES_TO_TEST" | tr ' ' '\n' | awk 'NF' | xargs -P 8 -I {} bash -c 'run_package_test "{}" > ".logs/{}.log" 2>&1 || touch ".logs/{}.failed"'
155155

156156
for failed in .logs/*.failed; do
157157
if [ -f "$failed" ]; then

0 commit comments

Comments
 (0)