blob: 2a35cc73cce8ea1be6f1d983142fa5fbd3604143 [file] [log] [blame]
Ahmad Sharif0dcbc4b2012-02-02 16:37:18 -08001#!/bin/bash
2#
3# Copyright 2011 Google Inc. All Rights Reserved.
4# Author: raymes@google.com (Raymes Khoury)
5
6export PYTHONPATH+=":.."
7for test in $(find -name \*test.py); do
8 echo RUNNING: ${test}
9 if ! ./${test} ; then
10 echo "Test Failed!"
11 exit 1
12 fi
13done