mirror of
https://github.com/facebook/zstd.git
synced 2025-07-06 23:56:40 +02:00
8 lines
147 B
Bash
8 lines
147 B
Bash
![]() |
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
# Test stream size & hint
|
||
|
datagen -g7654 | zstd --stream-size=7654 | zstd -t
|
||
|
datagen -g7654 | zstd --size-hint=7000 | zstd -t
|