Fixed test

This commit is contained in:
Dmitry Stogov 2024-11-18 15:34:55 +03:00
parent 79aaeeafe5
commit 71403558d3
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View file

@ -6,8 +6,8 @@ opcache.jit_buffer_size=32M
opcache
--FILE--
<?php
touch('gh16829_1.inc');
require_once('gh16829_1.inc');
touch(__DIR__ . '/gh16829_1.inc');
require_once(__DIR__ . '/gh16829_1.inc');
?>
DONE
--EXPECT--

View file

@ -1,6 +1,6 @@
<?php
# inline Reproducer class definition and segfaults will go away
require_once('Reproducer.php');
require_once(__DIR__ . '/gh16829_2.inc');
# remove $someVar1\2 or $someVar3 and loop at the end of the file and segfaults will go away
$someVar2 = null;