mirror of
https://github.com/swaywm/sway.git
synced 2025-03-17 12:04:27 +00:00
12 lines
165 B
Text
12 lines
165 B
Text
|
#!/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
|