mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Merge branch 'PHP-8.3'
* PHP-8.3: Increase run-tests.php timeout for asan
This commit is contained in:
commit
0d94b58d35
1 changed files with 4 additions and 0 deletions
|
@ -1212,6 +1212,10 @@ function system_with_timeout(
|
||||||
}
|
}
|
||||||
|
|
||||||
$timeout = $valgrind ? 300 : ($env['TEST_TIMEOUT'] ?? 60);
|
$timeout = $valgrind ? 300 : ($env['TEST_TIMEOUT'] ?? 60);
|
||||||
|
/* ASAN can cause a ~2-3x slowdown. */
|
||||||
|
if (isset($env['SKIP_ASAN'])) {
|
||||||
|
$timeout *= 3;
|
||||||
|
}
|
||||||
|
|
||||||
while (true) {
|
while (true) {
|
||||||
/* hide errors from interrupted syscalls */
|
/* hide errors from interrupted syscalls */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue