blob: f252a78f179f7e58ab71c3d7dd1cbb9af574d341 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001#!/bin/sh
2
Andrew Geissler517393d2023-01-13 08:55:19 -06003set -e
4
Brad Bishopd7bf8c12018-02-25 22:55:05 -05005export LC_ALL=en_US.UTF-8
Andrew Geissler517393d2023-01-13 08:55:19 -06006
7# testModule isn't that useful and hard-codes buildtree, so we don't run that
8TESTS="runtest runsuite testrecurse testchar testdict testThreads runxmlconf testapi"
9
10for T in $TESTS; do
11 echo Running $T
12 ./$T && echo PASS: $T || echo FAIL: $T
13done
14
15if test -d python/tests; then
16 cd python/tests
17 for T in *.py; do
18 python3 ./$T && echo PASS: $T || echo FAIL: $T
19 done
20fi