1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/test.zsh
Alexander Medvednikov e2364f6285 main.v: update help
2019-07-21 14:42:54 +02:00

12 lines
191 B
Bash

#!/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