blob: d9d6987d8a1e5b7665ab0787b0d5e10991841915 [file] [log] [blame]
#!/bin/bash
if [ -z "$ANDROID_BUILD_TOP" ]; then
echo "Missing ANDROID_BUILD_TOP env variable. Run 'lunch' first."
exit 1
fi
# Runs all unit tests under tools/acloud.
tests=$(find . -type f | grep test\.py)
for t in $tests; do
PYTHONPATH=$ANDROID_BUILD_TOP/tools python $t;
done