]> granicus.if.org Git - php/commitdiff
remove test accidentally added
authorGreg Beaver <cellog@php.net>
Fri, 8 Feb 2008 05:08:18 +0000 (05:08 +0000)
committerGreg Beaver <cellog@php.net>
Fri, 8 Feb 2008 05:08:18 +0000 (05:08 +0000)
ext/phar/tests/zf_test.phpt [deleted file]

diff --git a/ext/phar/tests/zf_test.phpt b/ext/phar/tests/zf_test.phpt
deleted file mode 100644 (file)
index 67660a4..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
---TEST--
-test broken app
---INI--
-phar.readonly=0
---FILE--
-<?php
-$file = "zfapp";
-$tgz_file = dirname(__FILE__) . "/$file.tgz";
-chdir(dirname(__FILE__));
-$phar_file = basename(__FILE__, '.php') . '.phar.php';
-@unlink($phar_file);
-copy($tgz_file, $phar_file);
-$a = new Phar($phar_file);
-$a->startBuffering();
-$a->setStub("<?php
-Phar::interceptFileFuncs();
-Phar::webPhar('$file.phar', 'html/index.php');
-echo 'BlogApp is intended to be executed from a web browser\n';
-exit -1;
-__HALT_COMPILER();
-");
-$a->stopBuffering();
-foreach(new RecursiveIteratorIterator($a, RecursiveIteratorIterator::LEAVES_ONLY) as $f) {
-echo $f->getPathName() . "\n";
-}
-?>
-===DONE===
---CLEAN--
-<?php
-unlink(dirname(__FILE__) . '/' . basename(__FILE__, '.clean.php') . '.phar.php');
-__HALT_COMPILER();
-?>
---EXPECT--
-===DONE===