summaryrefslogtreecommitdiff
path: root/ext/phar/tests/029.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/phar/tests/029.phpt')
-rwxr-xr-xext/phar/tests/029.phpt48
1 files changed, 0 insertions, 48 deletions
diff --git a/ext/phar/tests/029.phpt b/ext/phar/tests/029.phpt
deleted file mode 100755
index 37f7b4edaf..0000000000
--- a/ext/phar/tests/029.phpt
+++ /dev/null
@@ -1,48 +0,0 @@
---TEST--
-Phar::loadPhar overloading alias names
---SKIPIF--
-<?php if (!extension_loaded("phar")) print "skip"; ?>
---INI--
-phar.require_hash=0
---FILE--
-<?php
-$fname1 = dirname(__FILE__) . '/' . basename(__FILE__, '.php') . '.1.phar.php';
-$fname2 = dirname(__FILE__) . '/' . basename(__FILE__, '.php') . '.2.phar.php';
-$fname = $fname1;
-$pname = 'phar://hio';
-$file = '<?php include "' . $pname . '/a.php"; __HALT_COMPILER(); ?>';
-
-$files = array();
-$files['a.php'] = '<?php echo "This is a\n"; include "'.$pname.'/b.php"; ?>';
-$files['b.php'] = '<?php echo "This is b\n"; include "'.$pname.'/b/c.php"; ?>';
-$files['b/c.php'] = '<?php echo "This is b/c\n"; include "'.$pname.'/b/d.php"; ?>';
-$files['b/d.php'] = '<?php echo "This is b/d\n"; include "'.$pname.'/e.php"; ?>';
-$files['e.php'] = '<?php echo "This is e\n"; ?>';
-
-include 'phar_test.inc';
-
-file_put_contents($fname2, $file);
-
-var_dump(Phar::loadPhar($fname1, 'hio'));
-var_dump(Phar::loadPhar($fname1, 'copy'));
-try
-{
- var_dump(Phar::loadPhar($fname2, 'copy'));
-}
-catch (Exception $e)
-{
- echo $e->getMessage() . "\n";
-}
-
-?>
-===DONE===
---CLEAN--
-<?php
-unlink(dirname(__FILE__) . '/' . basename(__FILE__, '.clean.php') . '.1.phar.php');
-unlink(dirname(__FILE__) . '/' . basename(__FILE__, '.clean.php') . '.2.phar.php');
-?>
---EXPECTF--
-bool(true)
-bool(true)
-alias "copy" is already used for archive "%s029.1.phar.php" cannot be overloaded with "%s029.2.phar.php"
-===DONE===