#!/bin/bash set -e # glibc test script # This script runs the glibc test suite build_dir=$1 # Change to the build directory cd ${build_dir}/sources/glibc/build # Run basic glibc tests make check echo "glibc tests completed successfully"