diff options
author | Jeff Lane <jeffrey.lane@canonical.com> | 2017-08-17 18:43:41 -0400 |
---|---|---|
committer | Maciej Kisielewski <maciej.kisielewski@canonical.com> | 2017-08-27 13:32:14 +0200 |
commit | 9dc442cebb90447da1c5969ce6db4786cd32cbdf (patch) | |
tree | b3052b09dfdd9136c2e4fed583fe2628894a714f | |
parent | f39c691b70e3c0f8f058751b77724e4a36780491 (diff) |
Add a quick job to check syslog for call traces to be run at end of testing
-rw-r--r-- | jobs/miscellanea.txt.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/jobs/miscellanea.txt.in b/jobs/miscellanea.txt.in index 654ce26c..320ba714 100644 --- a/jobs/miscellanea.txt.in +++ b/jobs/miscellanea.txt.in @@ -358,3 +358,11 @@ user: root command: SOSFILE=`ls -t $PLAINBOX_SESSION_SHARE/sosreport*xz | head -1`; [ -e ${SOSFILE} ] && base64 $SOSFILE _summary: Attach the baseline sosreport file + +plugin: shell +category_id: com.canonical.plainbox::miscellanea +estimated_duration: 0.5 +id: miscellanea/call-trace-check +command: if [ -n "$(grep "Call Trace:" /var/log/syslog)" ]; then echo "Call Trace detected in syslog"; false; else true; fi +_summary: Check syslog for call traces +_description: Checks syslog for call traces after testing is complete. |