mirror of
https://github.com/swaywm/sway.git
synced 2026-04-29 06:46:22 -04: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
|