blob: d9d6987d8a1e5b7665ab0787b0d5e10991841915 [file] [log] [blame]
Tri Vo05f01892017-03-02 11:28:31 -08001#!/bin/bash
2
3if [ -z "$ANDROID_BUILD_TOP" ]; then
4 echo "Missing ANDROID_BUILD_TOP env variable. Run 'lunch' first."
5 exit 1
6fi
7
8# Runs all unit tests under tools/acloud.
9tests=$(find . -type f | grep test\.py)
10for t in $tests; do
11 PYTHONPATH=$ANDROID_BUILD_TOP/tools python $t;
12done