| 12345678910111213141516 |
- #!/bin/bash
- set -e
- # Zstd test script
- # Runs the zstd test suite
- build_dir=$1
- # With simpleBuildEnvironment flag, we're already in build directory
- # Source is in sources/zstd relative to package root
- src_dir="sources/zstd"
- echo "Running zstd test suite..."
- make -C ${src_dir} check
- echo "All tests passed."
|