test.zsh: Renamed and made more portable

pull/1308/head
Mike 'Fuzzy' Partin 2019-07-25 03:25:12 -07:00 committed by Alexander Medvednikov
parent 3a8cdadcf5
commit 094f097e26
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/bin/zsh
#!/bin/sh
for f in **/*_test.v ; do
for f in `find . -type f -name '*_test.v'`; do
echo "Testing $f..."
v $f || echo "fail"
done