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