test.sh 311 B

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