mirror of
https://github.com/php/php-src.git
synced 2025-08-16 14:08:47 +02:00
Fixed test
This commit is contained in:
parent
79aaeeafe5
commit
71403558d3
2 changed files with 3 additions and 3 deletions
|
@ -6,8 +6,8 @@ opcache.jit_buffer_size=32M
|
||||||
opcache
|
opcache
|
||||||
--FILE--
|
--FILE--
|
||||||
<?php
|
<?php
|
||||||
touch('gh16829_1.inc');
|
touch(__DIR__ . '/gh16829_1.inc');
|
||||||
require_once('gh16829_1.inc');
|
require_once(__DIR__ . '/gh16829_1.inc');
|
||||||
?>
|
?>
|
||||||
DONE
|
DONE
|
||||||
--EXPECT--
|
--EXPECT--
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
# inline Reproducer class definition and segfaults will go away
|
# 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
|
# remove $someVar1\2 or $someVar3 and loop at the end of the file and segfaults will go away
|
||||||
$someVar2 = null;
|
$someVar2 = null;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue