10 lines
122 B
Bash
10 lines
122 B
Bash
#!/bin/sh
|
|
|
|
for i in test/*_test; do
|
|
if $i ; then
|
|
echo "PASS: $i"
|
|
else
|
|
echo "FAIL: $i"
|
|
fi
|
|
done
|