File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ for test in "${TEST_NAMES[@]}"; do
129129 rm -f " $preview_dest " 2> /dev/null || true
130130 fi
131131 else
132- if [ " $test " = " default" ] && [ " ${# TEST_NAMES[@]} " -gt 1 ]; then
132+ if { [ " $test " = " default" ] || [ " $test " = " bootstrap_placeholder " ] ; } && [ " ${# TEST_NAMES[@]} " -gt 1 ]; then
133133 rj_log " WARN: Skipping decode failure for synthetic '$test ' stream because named test streams were detected"
134134 continue
135135 fi
@@ -179,8 +179,12 @@ comment_rc=$?
179179cp -f " $LOG_FILE " " $ARTIFACTS_DIR /javascript-device-runner.log" 2> /dev/null || true
180180
181181if [ " ${# FAILED_TESTS[@]} " -gt 0 ]; then
182- rj_log " ERROR: CN1SS decode failures for tests: ${FAILED_TESTS[*]} "
183- comment_rc=12
182+ if [ " $meaningful_decoded_count " -gt 0 ] && [ " ${# FAILED_TESTS[@]} " -lt " $meaningful_decoded_count " ]; then
183+ rj_log " WARN: CN1SS decode failures for tests: ${FAILED_TESTS[*]} (non-fatal: $meaningful_decoded_count tests succeeded)"
184+ else
185+ rj_log " ERROR: CN1SS decode failures for tests: ${FAILED_TESTS[*]} "
186+ comment_rc=12
187+ fi
184188fi
185189
186190if [ " $meaningful_decoded_count " -eq 0 ]; then
You can’t perform that action at this time.
0 commit comments