Files
xahaud/tests.sh
2014-03-25 15:22:34 -07:00

12 lines
114 B
Bash

#!/bin/bash
# Runs all the tests in bin/
for f in bin/*.test
do
{
echo -e "\033[94m$f\033[0m"
$f
}
done