test.sh 324 B

123456789101112131415
  1. #!/bin/bash
  2. set -e
  3. # With simpleBuildEnvironment flag, we're already in build directory
  4. # which contains the built source tree
  5. build_dir=$1
  6. # Change to unix subdirectory for testing
  7. cd sources/unix
  8. # Run the TCL test suite
  9. echo "Running TCL 8.6.16 test suite..."
  10. make test
  11. echo "TCL 8.6.16 tests completed successfully."