blob: 2a35cc73cce8ea1be6f1d983142fa5fbd3604143 [file] [log] [blame]
#!/bin/bash
#
# Copyright 2011 Google Inc. All Rights Reserved.
# Author: raymes@google.com (Raymes Khoury)
export PYTHONPATH+=":.."
for test in $(find -name \*test.py); do
echo RUNNING: ${test}
if ! ./${test} ; then
echo "Test Failed!"
exit 1
fi
done