test.sh 271 B

12345678910111213
  1. #!/bin/bash
  2. set -e
  3. build_dir=$1
  4. # With simpleBuildEnvironment flag, we're already in build directory
  5. # Source is in sources/file relative to package root
  6. src_dir="sources/file"
  7. echo "Running tests for file-5.46..."
  8. cd ${src_dir} && make check
  9. echo "All tests passed."