Skip to content

Commit 8590ef4

Browse files
committed
Test
1 parent bfd42b0 commit 8590ef4

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

.github/actions/test-macos/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,6 @@ runs:
2424
--offline \
2525
--show-diff \
2626
--show-slow 1000 \
27-
--set-timeout 120
27+
--set-timeout 120 \
28+
Zend/tests/arginfo_zpp_mismatch.phpt \
29+
Zend/tests/arginfo_zpp_mismatch_strict.phpt

.github/workflows/push.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ env:
4646
CXX: ccache g++
4747
jobs:
4848
LINUX_X64:
49-
if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
49+
if: false
5050
services:
5151
mysql:
5252
image: mysql:8.3
@@ -135,7 +135,7 @@ jobs:
135135
if: ${{ !matrix.asan }}
136136
uses: ./.github/actions/verify-generated-files
137137
LINUX_X32:
138-
if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
138+
if: false
139139
name: LINUX_X32_DEBUG_ZTS
140140
runs-on: ubuntu-latest
141141
container:
@@ -214,7 +214,7 @@ jobs:
214214
- name: Verify generated files are up to date
215215
uses: ./.github/actions/verify-generated-files
216216
WINDOWS:
217-
if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
217+
if: false
218218
name: WINDOWS_X64_ZTS
219219
runs-on: windows-2022
220220
env:
@@ -241,7 +241,7 @@ jobs:
241241
run: .github/scripts/windows/test.bat
242242
BENCHMARKING:
243243
name: BENCHMARKING
244-
if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
244+
if: false
245245
runs-on: ubuntu-22.04
246246
steps:
247247
- name: git checkout
@@ -337,7 +337,7 @@ jobs:
337337
$(git merge-base ${{ github.event.pull_request.base.sha }} ${{ github.sha }}) \
338338
> $GITHUB_STEP_SUMMARY
339339
FREEBSD:
340-
if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
340+
if: false
341341
name: FREEBSD
342342
runs-on: ubuntu-latest
343343
steps:

Zend/tests/arginfo_zpp_mismatch.phpt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ function test($function) {
1515
return;
1616
}
1717

18-
ob_start();
1918
if (is_string($function)) {
2019
echo "Testing $function\n";
2120
} else {
@@ -57,7 +56,6 @@ function test($function) {
5756
@$function(null, null, null, null, null, null, null, null);
5857
} catch (Throwable) {
5958
}
60-
ob_end_clean();
6159
}
6260

6361
foreach (get_defined_functions()["internal"] as $function) {

Zend/tests/arginfo_zpp_mismatch_strict.phpt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ function test($function) {
1717
return;
1818
}
1919

20-
ob_start();
2120
if (is_string($function)) {
2221
echo "Testing $function\n";
2322
} else {
@@ -59,7 +58,6 @@ function test($function) {
5958
@$function(null, null, null, null, null, null, null, null);
6059
} catch (Throwable) {
6160
}
62-
ob_end_clean();
6361
}
6462

6563
foreach (get_defined_functions()["internal"] as $function) {

0 commit comments

Comments
 (0)