test.sh 249 B

1234567891011121314
  1. #!/bin/bash
  2. set -e
  3. build_dir=$1
  4. # With simpleBuildEnvironment flag, we're already in build directory
  5. # We need to change to the source directory first
  6. cd sources/tar
  7. echo "Running tests..."
  8. # Run the test suite
  9. make check
  10. echo "Tests completed."