summaryrefslogtreecommitdiff
path: root/TestRelease.job
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2016-09-11 16:13:53 +0200
committerChristophe Lyon <christophe.lyon@linaro.org>2016-09-11 16:13:53 +0200
commita098a0d24162608b7606f0e573e06f6cef9f9baf (patch)
treeeaa823ed2858f80de3bd29a482dad8bf5ee83ccf /TestRelease.job
parent120dcaeb656248e5596c9f75c513444922f1988b (diff)
scripts/TestRelease.job: Print a message at the end.
To make it clear whether compilation succeeded or failed. Change-Id: I54c46ebf85e1daeda15cd0c06c71fdc24d4b066e
Diffstat (limited to 'TestRelease.job')
-rwxr-xr-xTestRelease.job2
1 files changed, 2 insertions, 0 deletions
diff --git a/TestRelease.job b/TestRelease.job
index 57cbd319..8819caff 100755
--- a/TestRelease.job
+++ b/TestRelease.job
@@ -101,8 +101,10 @@ 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