Test all *.spec files on travis

This commit is contained in:
Dominik Ritter 2018-07-15 22:23:24 +02:00
commit 21f2d1a377
2 changed files with 16 additions and 11 deletions

15
test/suite.spec Executable file
View file

@ -0,0 +1,15 @@
#!/usr/bin/env zsh
#vim:ft=zsh ts=2 sw=2 sts=2 et fenc=utf-8
local failed=false
for test in **/*.spec; do
if [[ "${test}" == "test/suite.spec" ]]; then
continue;
fi
./${test} || failed=true
done
if [[ "${failed}" == "true" ]]; then
exit 1
fi