summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Beaver <cellog@php.net>2008-10-12 06:40:36 +0000
committerGreg Beaver <cellog@php.net>2008-10-12 06:40:36 +0000
commit0182bbf76b46954d2ec081701239b37c85452d7e (patch)
tree9b86ff58d686ff0b71033f45371385e2279f072d
parent53e1428b069dc9b259839f38c2eb9ac389c33a53 (diff)
downloadphp-git-0182bbf76b46954d2ec081701239b37c85452d7e.tar.gz
fix files for advanced include_path test
-rw-r--r--ext/phar/tests/files/include_path.pharbin458 -> 470 bytes
-rw-r--r--ext/phar/tests/files/include_path.phar.inc4
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/phar/tests/files/include_path.phar b/ext/phar/tests/files/include_path.phar
index 50f698c2b7..a048f5c0ad 100644
--- a/ext/phar/tests/files/include_path.phar
+++ b/ext/phar/tests/files/include_path.phar
Binary files differ
diff --git a/ext/phar/tests/files/include_path.phar.inc b/ext/phar/tests/files/include_path.phar.inc
index 85ef5a7663..448c87f61d 100644
--- a/ext/phar/tests/files/include_path.phar.inc
+++ b/ext/phar/tests/files/include_path.phar.inc
@@ -10,9 +10,9 @@ $phar['hello/test.php'] = '<?php
include "file1.php";';
$phar->setStub("<?php
-set_include_path('.' . PATH_SEPARATOR . 'phar://' . dirname(__FILE__) . '/include_path2.phar' );
+set_include_path('.' . PATH_SEPARATOR . 'phar://' . dirname(__FILE__) . '/files/include_path2.phar' );
include 'phar://' . __FILE__ . '/hello/test.php';
-set_include_path('.' . PATH_SEPARATOR . 'phar://' . dirname(__FILE__) . '/include_path2.phar/test');
+set_include_path('.' . PATH_SEPARATOR . 'phar://' . dirname(__FILE__) . '/files/include_path2.phar/test');
include 'phar://' . __FILE__ . '/hello/test.php';
echo \"ok\\n\";
__HALT_COMPILER();