Add memory test utilities

This commit is contained in:
Drew DeVault 2016-06-19 11:25:58 -04:00
parent 698ba55860
commit e563bec64d
8 changed files with 153 additions and 10 deletions

11
test/runner Executable file
View 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