golden hour
/opt/alt/tests/alt-php71-pecl-lzf_1.6.8-1.el9/tests
⬆️ Go Up
Upload
File/Folder
Size
Actions
001.phpt
554 B
Del
OK
002.phpt
340 B
Del
OK
003.phpt
348 B
Del
OK
004.phpt
503 B
Del
OK
006.phpt
370 B
Del
OK
bug70727.phpt
1.08 KB
Del
OK
Edit: 006.phpt
--TEST-- lzf.compress on binary may result in larger string than input --SKIPIF-- <?php if (!extension_loaded("lzf")) print "skip"; ?> <?php if (!function_exists("random_bytes")) print "skip"; ?> --FILE-- <?php for ($i = 0 ; $i<32 ; $i++) { $in = random_bytes(random_int(10000,50000)); $out = lzf_compress($in); if (!$out) echo "Failure\n"; } ?> Done --EXPECT-- Done
Save