Home | History | Annotate | Line # | Download | only in compression
      1  1.1  christos #!/bin/sh
      2  1.1  christos 
      3  1.1  christos set -e
      4  1.1  christos 
      5  1.1  christos # Test multi-threaded flags
      6  1.1  christos zstd --single-thread file -f -q         ; zstd -t file.zst
      7  1.1  christos zstd -T2 -f file -q                     ; zstd -t file.zst
      8  1.1  christos zstd --rsyncable -f file -q             ; zstd -t file.zst
      9  1.1  christos zstd -T0 -f file -q                     ; zstd -t file.zst
     10  1.1  christos zstd -T0 --auto-threads=logical -f file -q ; zstd -t file.zst
     11  1.1  christos zstd -T0 --auto-threads=physical -f file -q ; zstd -t file.zst
     12  1.1  christos 
     13  1.1  christos # multi-thread decompression warning test
     14  1.1  christos zstd -T0 -f file -q                     ; zstd -t file.zst; zstd -T0 -d file.zst -o file3
     15  1.1  christos zstd -T0 -f file -q                     ; zstd -t file.zst; zstd -T2 -d file.zst -o file4
     16