test.sh 206 B

123456789101112131415
  1. #!/bin/bash
  2. set -e
  3. # M4 test script
  4. # Runs the test suite for M4 as recommended by LFS
  5. build_dir=$1
  6. cd sources/m4
  7. echo "Running M4 tests in $(pwd)..."
  8. make test
  9. echo "M4 tests completed successfully."