提交 5c0d8d5d 编写于 作者: Y yangyaming

Adapt CI to support test of projects in fluid directory.

上级 8b97903d
...@@ -24,11 +24,22 @@ unittest(){ ...@@ -24,11 +24,22 @@ unittest(){
trap 'abort' 0 trap 'abort' 0
set -e set -e
for proj in */ ; do for proj in * ; do
if [ -d $proj ]; then if [ -d $proj ]; then
unittest $proj if [ "$proj" == "fluid" ]; then
if [ $? != 0 ]; then for proj in fluid/* ; do
exit 1 if [ -d $proj ]; then
unittest $proj
if [ $? != 0 ]; then
exit 1
fi
fi
done
else
unittest $proj
if [ $? != 0 ]; then
exit 1
fi
fi fi
fi fi
done done
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册