We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6add347 commit 048d200Copy full SHA for 048d200
1 file changed
extension/scripts/soak-runtime.sh
@@ -230,7 +230,9 @@ for ((iteration = 1; iteration <= ITERATIONS; iteration++)); do
230
cleanup_test_artifacts
231
current_log="${LOG_DIR}/iteration-${iteration}.log"
232
233
- if "${PHP_BIN}" run-tests.php -q -d "extension=${EXT_SO}" "${TEST_FILES[@]}" >"${current_log}" 2>&1; then
+ # Keep sanitizer gates focused on King itself instead of whichever shared
234
+ # PHP extensions happen to be enabled on the host runner.
235
+ if "${PHP_BIN}" run-tests.php -q -n -d "extension=${EXT_SO}" "${TEST_FILES[@]}" >"${current_log}" 2>&1; then
236
printf 'iteration=%d status=pass\n' "${iteration}" >> "${SUMMARY_FILE}"
237
continue
238
fi
0 commit comments