mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
12 lines
114 B
Bash
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
|