1
0
Fork 0
mirror of https://github.com/swaywm/sway.git synced 2025-03-26 08:12:04 +00:00
sway/test/runner
2016-06-19 11:25:58 -04:00

11 lines
165 B
Bash
Executable file

#!/usr/bin/bash
tests=$(find . -type f -name "*_test")
ret=0
for test in $tests
do
printf 'Running %s\n' $(basename $test)
$test
ret+=$?
done
exit $ret