1
0
mirror of https://github.com/facebook/zstd.git synced 2025-04-23 10:05:44 +03:00
Yann Collet 8803d1497a switch to a single flush mutex+cond
which is transferred to the current oldest unfinished job.
2025-02-01 18:37:23 -08:00

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"