1
0
Fork 0
mirror of https://github.com/romkatv/powerlevel10k.git synced 2024-09-22 11:30:07 +00:00
powerlevel10k/test/suite.spec
2018-07-16 07:33:31 +02:00

15 lines
268 B
Bash
Executable file

#!/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