mirror of
https://github.com/facebook/zstd.git
synced 2025-04-21 23:05:51 +03:00
Basic tests for (de)compressing in the following modes: * file to file * file to stdout * stdin to file * stdin to stdout These are basic tests, and aren't testing more advanced scenarios, but it adds the groundwork for more complex tests as needed. Fixes #3010.
9 lines
98 B
Bash
Executable File
9 lines
98 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
datagen > file
|
|
|
|
zstd < file -q --trace-file-stat -o file.zst
|
|
zstd -tq file.zst
|