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

Delete test.sh

This commit is contained in:
Alexander Medvednikov 2019-08-16 17:03:56 +03:00 committed by GitHub
parent b188ecf680
commit 1372d04b43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

11
test.sh
View File

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