test.sh 168 B

12345678910111213
  1. #!/bin/bash
  2. set -e
  3. build_dir=$1
  4. src_dir=$(pwd)/sources/zlib-1.3.1
  5. # Change to source directory
  6. cd ${src_dir}
  7. # Run the test suite
  8. make check
  9. echo "All tests passed"