]> granicus.if.org Git - php/commitdiff
Fixed test file
authorDmitry Stogov <dmitry@php.net>
Mon, 18 Jun 2007 07:31:45 +0000 (07:31 +0000)
committerDmitry Stogov <dmitry@php.net>
Mon, 18 Jun 2007 07:31:45 +0000 (07:31 +0000)
tests/lang/bug32924.phpt

index ddb8301e31072fdfaee3b7bcbcfa7fc600bb5959..d72b0eaa2ec6fc9839d26bf74a8efd982a9f2fc0 100644 (file)
@@ -1,12 +1,12 @@
 --TEST--
 Bug #32924 (prepend does not add file to included files)
 --INI--
-include_path=.
-auto_prepend_file=tests/lang/inc.inc
+include_path={PWD}
+auto_prepend_file=inc.inc
 --FILE--
 <?php 
-include_once('tests/lang/inc.inc');
-require_once('tests/lang/inc.inc');
+include_once(dirname(__FILE__).'/inc.inc');
+require_once(dirname(__FILE__).'/inc.inc');
 ?>
 END
 --EXPECT--