File: tests.sh

package info (click to toggle)
proofgeneral 4.5-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,172 kB
  • sloc: lisp: 33,783; makefile: 388; sh: 118; perl: 109
file content (9 lines) | stat: -rwxr-xr-x 193 bytes parent folder | download
1
2
3
4
5
6
7
8
9
#!/bin/bash




for i in $(find . -name "*.v" -exec basename '{}' \; | grep -v "indented_") ; do
    echo -n "Testing $i..."
    ./coq-test-indent.sh $i 2>&1 | tee .$i.log | grep "\*\*\*"
done