Skip to content

Commit 5198bcc

Browse files
committed
Merge branch 'PHP-8.2' into PHP-8.3
* PHP-8.2: Fixed test
2 parents 5575703 + 7140355 commit 5198bcc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ext/opcache/tests/jit/gh16829.phpt

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ opcache.jit_buffer_size=32M
66
opcache
77
--FILE--
88
<?php
9-
touch('gh16829_1.inc');
10-
require_once('gh16829_1.inc');
9+
touch(__DIR__ . '/gh16829_1.inc');
10+
require_once(__DIR__ . '/gh16829_1.inc');
1111
?>
1212
DONE
1313
--EXPECT--

ext/opcache/tests/jit/gh16829_1.inc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
# inline Reproducer class definition and segfaults will go away
3-
require_once('Reproducer.php');
3+
require_once(__DIR__ . '/gh16829_2.inc');
44

55
# remove $someVar1\2 or $someVar3 and loop at the end of the file and segfaults will go away
66
$someVar2 = null;

0 commit comments

Comments
 (0)