mirror of
https://github.com/facebook/zstd.git
synced 2025-03-07 01:10:04 +02:00
Add cli-tests to `make test`. This adds a `python3` dependency to `make test`, but not `make check`. We could make this dependency optional by skipping the tests if `python3` is not present.
17 lines
324 B
Bash
Executable File
17 lines
324 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "$COMMON/format.sh"
|
|
|
|
set -e
|
|
|
|
# Test --format
|
|
zstd --format=zstd file -f
|
|
zstd -t file.zst
|
|
for format in "gzip" "lz4" "xz" "lzma"; do
|
|
if zstd_supports_format $format; then
|
|
zstd --format=$format file
|
|
zstd -t file.$(format_extension $format)
|
|
zstd -c --format=$format file | zstd -t --format=$format
|
|
fi
|
|
done
|