test.sh 281 B

123456789101112131415
  1. #!/bin/bash
  2. set -e
  3. # Zlib test script
  4. # Runs the test suite as specified in LFS
  5. build_dir=$1
  6. # With simpleBuildEnvironment flag, we're already in build directory
  7. echo "Running zlib test suite..."
  8. # Run tests as specified in LFS
  9. make check
  10. echo "All tests passed successfully."