aboutsummaryrefslogtreecommitdiff
path: root/tcwg-abe-test.yaml
diff options
context:
space:
mode:
authorMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2015-06-01 20:33:35 +0200
committerMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2015-06-01 18:34:49 +0000
commitf35dcddd598858fdd52f57272eb26187068d1009 (patch)
tree913c9f643882d1903699d4d01b13fd4386d3f1f7 /tcwg-abe-test.yaml
parent098c140816c2d62d8dbc2dd6212bb3603f7339f7 (diff)
tcwg-abe-test[-manual]: Restore running API testsuite
Change-Id: I4606b605c547ce9c582cd911263489691294d1d0
Diffstat (limited to 'tcwg-abe-test.yaml')
-rw-r--r--tcwg-abe-test.yaml10
1 files changed, 9 insertions, 1 deletions
diff --git a/tcwg-abe-test.yaml b/tcwg-abe-test.yaml
index 34190a04b3..2ee987851d 100644
--- a/tcwg-abe-test.yaml
+++ b/tcwg-abe-test.yaml
@@ -82,6 +82,14 @@
set -e
set -x
./configure --with-fileserver=ex40-01.tcwglab.linaro.org/snapshots-ref
- make check
+ echo "=== Unit testsuite ==="
+ ret_unit=0; make check || ret_unit=1
+ echo "=== API testsuite ==="
+ ret_api=0; ./test.sh || ret_api=1
+ if [ x"$ret_unit" = x"0" -a x"$ret_api" = x"0" ]; then
+ exit 0
+ else
+ exit 1
+ fi
;;
esac