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

11
test.sh Normal file
View File

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