summaryrefslogtreecommitdiff
path: root/ext/bz2/tests/with_files.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/bz2/tests/with_files.phpt')
-rw-r--r--ext/bz2/tests/with_files.phpt23
1 files changed, 0 insertions, 23 deletions
diff --git a/ext/bz2/tests/with_files.phpt b/ext/bz2/tests/with_files.phpt
deleted file mode 100644
index 5691445939..0000000000
--- a/ext/bz2/tests/with_files.phpt
+++ /dev/null
@@ -1,23 +0,0 @@
---TEST--
-BZ2 with files
---SKIPIF--
-<?php if (!extension_loaded("bz2")) print "skip"; ?>
---FILE--
-<?php // $Id$
-
-error_reporting(E_ALL);
-
-$filename = "testfile.bz2";
-$str = "This is a test string.\n";
-$bz = bzopen($filename, "w");
-bzwrite($bz, $str);
-bzclose($bz);
-
-$bz = bzopen($filename, "r");
-print bzread($bz, 10);
-print bzread($bz);
-bzclose($bz);
-unlink($filename);
-
---EXPECT--
-This is a test string.