mirror of
https://github.com/holub/mame
synced 2025-05-10 16:21:42 +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.
11 lines
269 B
Bash
Executable File
11 lines
269 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
println "+ good path"
|
|
zstdless file.zst
|
|
println "+ pass parameters"
|
|
zstdless -N file.zst # This parameter does not produce line #s when piped, but still serves to test that the flag went to less and not zstd
|
|
println "+ bad path"
|
|
zstdless bad.zst >&2
|