#!/bin/bash set -e build_dir=$1 # With simpleBuildEnvironment flag, we're already in build directory # We need to change to the source directory first cd sources/tar echo "Running tests..." # Run the test suite make check echo "Tests completed."