blob: d41f8adb807483d8a491107eed5e9d013fc43e95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# FIXME aconway 2007-01-09: Re-enable.
echo "*** WARNING: PYTHON TESTS DISABLED till branch is functioning on 0-9."
exit
# Run the python tests.
if test -d ../../python ; then
cd ../../python && ./run-tests -v -I cpp_failing.txt
else
echo Warning: python tests not found.
fi
|