test.sh 221 B

12345678910111213
  1. #!/bin/bash
  2. set -e
  3. build_dir=$1
  4. # With simpleBuildEnvironment flag, we're already in build directory
  5. # Change to source directory for testing
  6. cd sources/bc
  7. echo "Running bc tests..."
  8. make test
  9. echo "All tests passed."