run_tests.sh revision 0dcbc4b1714260820fd4b8d6536fbb05e139cc0f
1#!/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
14