mirror of
https://github.com/swaywm/sway.git
synced 2024-11-25 17:31:28 +00:00
12 lines
165 B
Bash
Executable file
12 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
|