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