diff --git a/.github/actions/test-macos/action.yml b/.github/actions/test-macos/action.yml index b0f461ec4e6e1..1fe0eb9395cbe 100644 --- a/.github/actions/test-macos/action.yml +++ b/.github/actions/test-macos/action.yml @@ -24,4 +24,6 @@ runs: --offline \ --show-diff \ --show-slow 1000 \ - --set-timeout 120 + --set-timeout 120 \ + Zend/tests/arginfo_zpp_mismatch.phpt \ + Zend/tests/arginfo_zpp_mismatch_strict.phpt diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 18a8453f69621..c4d8d02b7c096 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -46,7 +46,7 @@ env: CXX: ccache g++ jobs: LINUX_X64: - if: github.repository == 'php/php-src' || github.event_name == 'pull_request' + if: false services: mysql: image: mysql:8.3 @@ -135,7 +135,7 @@ jobs: if: ${{ !matrix.asan }} uses: ./.github/actions/verify-generated-files LINUX_X32: - if: github.repository == 'php/php-src' || github.event_name == 'pull_request' + if: false name: LINUX_X32_DEBUG_ZTS runs-on: ubuntu-latest container: @@ -214,7 +214,7 @@ jobs: - name: Verify generated files are up to date uses: ./.github/actions/verify-generated-files WINDOWS: - if: github.repository == 'php/php-src' || github.event_name == 'pull_request' + if: false name: WINDOWS_X64_ZTS runs-on: windows-2022 env: @@ -241,7 +241,7 @@ jobs: run: .github/scripts/windows/test.bat BENCHMARKING: name: BENCHMARKING - if: github.repository == 'php/php-src' || github.event_name == 'pull_request' + if: false runs-on: ubuntu-22.04 steps: - name: git checkout @@ -337,7 +337,7 @@ jobs: $(git merge-base ${{ github.event.pull_request.base.sha }} ${{ github.sha }}) \ > $GITHUB_STEP_SUMMARY FREEBSD: - if: github.repository == 'php/php-src' || github.event_name == 'pull_request' + if: false name: FREEBSD runs-on: ubuntu-latest steps: diff --git a/Zend/tests/arginfo_zpp_mismatch.phpt b/Zend/tests/arginfo_zpp_mismatch.phpt index d7aefc6f374f6..52ecee7428734 100644 --- a/Zend/tests/arginfo_zpp_mismatch.phpt +++ b/Zend/tests/arginfo_zpp_mismatch.phpt @@ -15,7 +15,6 @@ function test($function) { return; } - ob_start(); if (is_string($function)) { echo "Testing $function\n"; } else { @@ -57,7 +56,6 @@ function test($function) { @$function(null, null, null, null, null, null, null, null); } catch (Throwable) { } - ob_end_clean(); } foreach (get_defined_functions()["internal"] as $function) { diff --git a/Zend/tests/arginfo_zpp_mismatch_strict.phpt b/Zend/tests/arginfo_zpp_mismatch_strict.phpt index ddee0bd29cfe4..15fa2388b8990 100644 --- a/Zend/tests/arginfo_zpp_mismatch_strict.phpt +++ b/Zend/tests/arginfo_zpp_mismatch_strict.phpt @@ -17,7 +17,6 @@ function test($function) { return; } - ob_start(); if (is_string($function)) { echo "Testing $function\n"; } else { @@ -59,7 +58,6 @@ function test($function) { @$function(null, null, null, null, null, null, null, null); } catch (Throwable) { } - ob_end_clean(); } foreach (get_defined_functions()["internal"] as $function) {