test.zsh: Renamed and made more portable
parent
3a8cdadcf5
commit
094f097e26
|
@ -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..."
|
echo "Testing $f..."
|
||||||
v $f || echo "fail"
|
v $f || echo "fail"
|
||||||
done
|
done
|
Loading…
Reference in New Issue