aboutsummaryrefslogtreecommitdiff
path: root/tcwg-abe-test.yaml
diff options
context:
space:
mode:
authorMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2015-05-20 21:05:47 +0200
committerLinaro Code Review <review@review.linaro.org>2015-05-22 11:52:45 +0000
commitb44b5f85acc720c4b99cf1114cde10e78afe91e9 (patch)
tree3d6246f28b538f708cc394d7ccb3c21146866e0b /tcwg-abe-test.yaml
parentaf52cc660a836d7e2f0f5541ced3092a4f8a07c2 (diff)
tcwg-abe-test: Runs ABE's test with verbose output
Change-Id: Iface63926f388c710a5e41bcf915597b17045c5c
Diffstat (limited to 'tcwg-abe-test.yaml')
-rw-r--r--tcwg-abe-test.yaml5
1 files changed, 3 insertions, 2 deletions
diff --git a/tcwg-abe-test.yaml b/tcwg-abe-test.yaml
index a0085af06c..37b3e64a7c 100644
--- a/tcwg-abe-test.yaml
+++ b/tcwg-abe-test.yaml
@@ -81,11 +81,12 @@
native_build) bash -x ${WORKSPACE}/jenkins.sh -t native --runtests -f 148.251.136.42:snapshots-ref --excludecheck gdb ;;
testsuite)
set -e
+ set -x
./configure --with-fileserver=148.251.136.42 --with-remote-snapshots=snapshots-ref
echo "=== Unit testsuite ==="
- (./testsuite/test.sh; ret_unit=$?) || true
+ (bash -x ./testsuite/test.sh; ret_unit=$?) || true
echo "=== API testsuite ==="
- (./test.sh; ret_api=$?) || true
+ (bash -x ./test.sh; ret_api=$?) || true
if [ x"$ret_unit" = x"0" -a x"$ret_api" = x"0" ]; then
exit 0
else