xref: /PHP-8.1/ext/phar/tests/zip/corrupt_010.phpt (revision 74859783)
1--TEST--
2Phar: unable to process zip (zip spanning multiple archives)
3--EXTENSIONS--
4phar
5--FILE--
6<?php
7try {
8    new PharData(__DIR__ . '/files/disknumber.zip');
9} catch (Exception $e) {
10    echo $e->getMessage() . "\n";
11}
12?>
13--EXPECTF--
14phar error: split archives spanning multiple zips cannot be processed in zip-based phar "%sdisknumber.zip"
15