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

Create test.sh

This commit is contained in:
Alexander Medvednikov 2019-07-21 13:44:20 +02:00 committed by GitHub
parent a6e4720a4d
commit 385f1c856e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

11
test.sh Normal file
View File

@ -0,0 +1,11 @@
#!/bin/zsh
for f in **/*_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