summaryrefslogtreecommitdiff
path: root/TestRelease.job
diff options
context:
space:
mode:
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