test.sh 241 B

123456789101112131415
  1. #!/bin/bash
  2. set -e
  3. # glibc test script
  4. # This script runs the glibc test suite
  5. build_dir=$1
  6. # Change to the build directory
  7. cd ${build_dir}/sources/glibc/build
  8. # Run basic glibc tests
  9. make check
  10. echo "glibc tests completed successfully"