1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

test.zsh: Renamed and made more portable

This commit is contained in:
Mike 'Fuzzy' Partin 2019-07-25 03:25:12 -07:00 committed by Alexander Medvednikov
parent 3a8cdadcf5
commit 094f097e26

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