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.
11 lines
111 B
Bash
Executable File
11 lines
111 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
println "+ zstd -h"
|
|
zstd -h
|
|
println "+ zstd -H"
|
|
zstd -H
|
|
println "+ zstd --help"
|
|
zstd --help
|