#!/bin/bash # Repeatedly stop building until successive layers, and run all tests built. set -e cd `dirname $0` for f in [0-9]*cc do echo "=== $f" ./build_and_test_until $f || exit 1 done