Skip to content

Commit d10d188

Browse files
committed
Merge branch 'PHP-8.5'
* PHP-8.5: Skip proc_open_multiplex.phpt on PPC runner Skip mysqli_fetch_all_data_types_variation.phpt on PPC runner
2 parents f9c4fe4 + a48de0a commit d10d188

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

ext/mysqli/tests/fetch/mysqli_fetch_all_data_types_variation.phpt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ mysqli_fetch_all() data types variation
44
mysqli
55
--SKIPIF--
66
<?php
7+
if (getenv('GITHUB_ACTIONS') && str_starts_with(php_uname('m'), 'ppc')) {
8+
die('skip Flaky on GitHub Actions PPC runner');
9+
}
710
require_once dirname(__DIR__) . "/test_setup/test_helpers.inc";
811
mysqli_check_skip_test();
912
?>

ext/standard/tests/general_functions/proc_open_multiplex.phpt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
--TEST--
22
Multiplexing of child output
3+
--SKIPIF--
4+
<?php
5+
if (getenv('GITHUB_ACTIONS') && str_starts_with(php_uname('m'), 'ppc')) {
6+
die('skip Flaky on GitHub Actions PPC runner');
7+
}
8+
?>
39
--FILE--
410
<?php
511
$php = getenv("TEST_PHP_EXECUTABLE");

0 commit comments

Comments
 (0)