aboutsummaryrefslogtreecommitdiff
path: root/crosperf/run_tests.sh
blob: 2a35cc73cce8ea1be6f1d983142fa5fbd3604143 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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