mirror of
https://github.com/vlang/v.git
synced 2025-09-15 23:42:28 +03:00
11 lines
211 B
Bash
11 lines
211 B
Bash
#!/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
|