We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5575703 + 7140355 commit 5198bccCopy full SHA for 5198bcc
ext/opcache/tests/jit/gh16829.phpt
@@ -6,8 +6,8 @@ opcache.jit_buffer_size=32M
6
opcache
7
--FILE--
8
<?php
9
-touch('gh16829_1.inc');
10
-require_once('gh16829_1.inc');
+touch(__DIR__ . '/gh16829_1.inc');
+require_once(__DIR__ . '/gh16829_1.inc');
11
?>
12
DONE
13
--EXPECT--
ext/opcache/tests/jit/gh16829_1.inc
@@ -1,6 +1,6 @@
1
2
# inline Reproducer class definition and segfaults will go away
3
-require_once('Reproducer.php');
+require_once(__DIR__ . '/gh16829_2.inc');
4
5
# remove $someVar1\2 or $someVar3 and loop at the end of the file and segfaults will go away
$someVar2 = null;
0 commit comments