mirror of
https://github.com/facebook/zstd.git
synced 2025-04-23 10:05:44 +03:00
15 lines
444 B
Bash
Executable File
15 lines
444 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# Test --adapt
|
|
zstd -f file --adapt -c | zstd -t
|
|
|
|
datagen -g100M > file100M
|
|
|
|
# Pick parameters to force fast adaptation, even on slow systems
|
|
zstd --adapt -vvvv -19 --zstd=wlog=18 file100M -o /dev/null 2>&1 | grep -q "faster speed , lighter compression"
|
|
|
|
# Adaption still happens with --no-progress
|
|
zstd --no-progress --adapt -vvvv -19 --zstd=wlog=18 file100M -o /dev/null 2>&1 | grep -q "faster speed , lighter compression"
|