summaryrefslogtreecommitdiff
path: root/TestRelease.job
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2017-02-24 21:52:57 +0000
committerChristophe Lyon <christophe.lyon@linaro.org>2017-03-16 17:22:24 +0000
commit2c3967198ea57da020f95600110ca85287558f0c (patch)
tree23128b8f993e6d39ef68e0899e72e3d7db5223c8 /TestRelease.job
parent103daab6c3679cbdee4e8ffd7c9b9cc78ae35ace (diff)
TestRelease.job: run tcwg-regression tests.
Change-Id: Ia2b19afbd2be2cafca4f2d26538b3e28bfd41277
Diffstat (limited to 'TestRelease.job')
-rwxr-xr-xTestRelease.job9
1 files changed, 8 insertions, 1 deletions
diff --git a/TestRelease.job b/TestRelease.job
index 83148ec0..ac171046 100755
--- a/TestRelease.job
+++ b/TestRelease.job
@@ -133,9 +133,16 @@ fi
# See if the compilation worked
if test -e ${testdir}/hi; then
echo Compilation of hello.cpp: SUCCESS
- exit 0
else
echo Compilation of hello.cpp: FAILED
exit 1
fi
+git clone --depth 1 https://git-us.linaro.org/toolchain/tcwg-regression
+make -C tcwg-regression check TOOLCHAIN=${testdir}/${dir} TARGET=${target}
+if [ $? -ne 0 ]; then
+ echo "TCWG regression tests FAILED"
+ exit 1
+fi
+
+exit 0