run.sh 200 B

123456789101112
  1. #!/bin/bash
  2. set -eo pipefail
  3. (
  4. IFS='
  5. '
  6. for f in $(find "$TESTS_DIR"/.. -name "*.cpp"); do
  7. if [[ ! "$f" == *../tests/* ]]; then
  8. bash ../scripts/compile "$f" --check-only
  9. fi
  10. done
  11. )