mirror of
https://github.com/holub/mame
synced 2025-05-13 09:28:13 +03:00

* 3rdparty/zstd: Added Zstandard compression library version 1.5.5. * util/unzip.cpp: Added support for Zstandard compression (method 93). * util/chdcodec.cpp: Added support for Zstandard compression. * 3rdparty/flac: Always define NDEBUG to avoid log spam.
16 lines
631 B
Bash
Executable File
16 lines
631 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# Test multi-threaded flags
|
|
zstd --single-thread file -f -q ; zstd -t file.zst
|
|
zstd -T2 -f file -q ; zstd -t file.zst
|
|
zstd --rsyncable -f file -q ; zstd -t file.zst
|
|
zstd -T0 -f file -q ; zstd -t file.zst
|
|
zstd -T0 --auto-threads=logical -f file -q ; zstd -t file.zst
|
|
zstd -T0 --auto-threads=physical -f file -q ; zstd -t file.zst
|
|
|
|
# multi-thread decompression warning test
|
|
zstd -T0 -f file -q ; zstd -t file.zst; zstd -T0 -d file.zst -o file3
|
|
zstd -T0 -f file -q ; zstd -t file.zst; zstd -T2 -d file.zst -o file4
|