diff options
Diffstat (limited to '3rdparty/zstd/tests/cli-tests/zstd-symlinks/zstdcat.sh')
-rwxr-xr-x | 3rdparty/zstd/tests/cli-tests/zstd-symlinks/zstdcat.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3rdparty/zstd/tests/cli-tests/zstd-symlinks/zstdcat.sh b/3rdparty/zstd/tests/cli-tests/zstd-symlinks/zstdcat.sh new file mode 100755 index 00000000000..74ec063d13c --- /dev/null +++ b/3rdparty/zstd/tests/cli-tests/zstd-symlinks/zstdcat.sh @@ -0,0 +1,12 @@ +#!/bin/sh +set -e + +# Test zstdcat symlink in bin/ +zstdcat hello.zst +zstdcat hello.zst world +zstdcat hello world.zst +zstdcat hello.zst world.zst + +# Test local zstdcat symlink +ln -s $(which zstd) ./zstdcat +./zstdcat hello.zst |