You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
319 B
20 lines
319 B
echo
|
|
echo Running all -?.x test cases:
|
|
echo
|
|
|
|
if [ -z $lua ]; then
|
|
lua=lua
|
|
fi
|
|
|
|
for i in *-?.*.lua ChatThrottleLib*.lua; do
|
|
echo ----- Running $i:
|
|
$lua $i
|
|
done
|
|
|
|
|
|
echo
|
|
echo -----------------------
|
|
echo DONE!
|
|
echo
|
|
echo '(To point at a specific lua.exe, use "export lua=/path/to/lua" prior to executing runall.sh)'
|
|
echo
|
|
|