mirror of
https://github.com/swaywm/sway.git
synced 2026-04-28 06:46:26 -04:00
Add memory test utilities
This commit is contained in:
parent
698ba55860
commit
e563bec64d
8 changed files with 153 additions and 10 deletions
11
test/runner
Executable file
11
test/runner
Executable file
|
|
@ -0,0 +1,11 @@
|
|||
#!/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
|
||||
Loading…
Add table
Add a link
Reference in a new issue