docker-php-extension-installer/scripts/tests/lz4

19 lines
419 B
Plaintext
Raw Normal View History

2022-06-16 14:36:44 +00:00
#!/usr/bin/env php
<?php
require_once __DIR__ . '/_bootstrap.php';
const ORIGINAL_DATA = 'Hi, there!';
$compressed = lz4_compress(ORIGINAL_DATA);
if (!is_string($compressed) || $compressed === '') {
fwrite(STDERR, 'lz4_compress() failed!');
exit(1);
}
$uncompressed = lz4_uncompress($compressed);
if ($uncompressed !== ORIGINAL_DATA) {
fwrite(STDERR, 'lz4_uncompress() failed!');
exit(1);
}
exit(0);