v/test.sh

12 lines
211 B
Bash
Raw Normal View History

#!/bin/sh
2019-07-21 13:44:20 +02:00
for f in `find . -type f -name '*_test.v'`; do
2019-07-21 13:44:20 +02:00
echo "Testing $f..."
v $f || echo "fail"
done
for f in examples/*.v ; do
echo "Building $f..."
v $f || echo "fail"
done