aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2016-04-11 21:58:55 +0200
committerChristophe Lyon <christophe.lyon@linaro.org>2016-04-11 21:58:55 +0200
commitc814168b083be4570a6b492b7787e81d88b7c005 (patch)
tree3c799fccfd39572eafbee1470e26eec8420ae334
parent1eaff5b18052871887e74ea4691341499da3e347 (diff)
Handle multiple dbg.log files.
Change-Id: Icd889670f17c81d671fbdf194b637a6f5bd06655
-rwxr-xr-xjenkins.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/jenkins.sh b/jenkins.sh
index 376173b6..27f8cc40 100755
--- a/jenkins.sh
+++ b/jenkins.sh
@@ -479,9 +479,9 @@ if test x"${logserver}" != x"" && test x"${sums}" != x -o x"${runtests}" != x"tr
cp ${logs} ${logs_dir}/ || status=1
# Copy over the runtest debug logs
- logs="`find ${user_workspace}/_build/builds/*/*/gcc.git*-stage2 -name dbg.log`"
+ dbglogs="`find ${user_workspace} -name dbg.log`"
- cp ${logs} ${logs_dir}/ || status=1
+ cat ${dbglogs} ${logs_dir}/ || status=1
# Copy stdout and stderr output from abe.
cp build.out build.err ${logs_dir}/ || status=1