Test all *.spec files on travis
This commit is contained in:
parent
6c4a3e8a1b
commit
21f2d1a377
2 changed files with 16 additions and 11 deletions
15
test/suite.spec
Executable file
15
test/suite.spec
Executable 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
|
Loading…
Add table
Add a link
Reference in a new issue