Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
Andrew Geissler | 5f35090 | 2021-07-23 13:09:54 -0400 | [diff] [blame] | 3 | # clock.test needs a timezone to be set |
| 4 | export TZ="Europe/London" |
| 5 | export TCL_LIBRARY=library |
Patrick Williams | 03514f1 | 2024-04-05 07:04:11 -0500 | [diff] [blame^] | 6 | export ERROR_ON_FAILURES=1 |
Patrick Williams | 169d7bc | 2024-01-05 11:33:25 -0600 | [diff] [blame] | 7 | |
| 8 | # Some tests are overly strict with timings and fail on loaded systems. |
Patrick Williams | 03514f1 | 2024-04-05 07:04:11 -0500 | [diff] [blame^] | 9 | SKIP="" |
| 10 | # 15321 |
| 11 | SKIP="$SKIP async-\* event-\*" |
| 12 | # 14882 |
| 13 | SKIP="$SKIP cmdMZ-6.6" |
| 14 | # 15081 |
| 15 | SKIP="$SKIP exit-1.\*" |
| 16 | # 15407 15421 |
| 17 | SKIP="$SKIP \*io-46.1" |
| 18 | # 14825 |
| 19 | SKIP="$SKIP socket-\* socket_inet-\*" |
Patrick Williams | 169d7bc | 2024-01-05 11:33:25 -0600 | [diff] [blame] | 20 | |
Patrick Williams | 03514f1 | 2024-04-05 07:04:11 -0500 | [diff] [blame^] | 21 | for i in tests/*.test; do |
| 22 | i=$(basename $i) |
| 23 | ./tcltest tests/all.tcl -file $i -skip "$SKIP" |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 24 | if [ $? -eq 0 ]; then |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 25 | echo "PASS: $i" |
Patrick Williams | 03514f1 | 2024-04-05 07:04:11 -0500 | [diff] [blame^] | 26 | else |
| 27 | echo "FAIL: $i" |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 28 | fi |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 29 | done |