mirror of
https://github.com/php/php-src.git
synced 2026-04-27 10:16:41 +02:00
a555cc0b3d
Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
15 lines
230 B
PHP
15 lines
230 B
PHP
--TEST--
|
|
Bug #64343 (phar cannot open tars with pax headers)
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("phar")) die("skip"); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
echo "Test\n";
|
|
|
|
$phar = new PharData(__DIR__."/files/bug64343.tar");
|
|
|
|
?>
|
|
--EXPECT--
|
|
Test
|