diff options
author | Jeff Lane <jeffrey.lane@canonical.com> | 2017-08-22 10:06:55 -0400 |
---|---|---|
committer | Maciej Kisielewski <maciej.kisielewski@canonical.com> | 2017-08-27 13:32:14 +0200 |
commit | 5552aa5d6ae8f1136a08d084800daa731956cbd1 (patch) | |
tree | 5f00fbf09a824e010d1ea01a192b5afcec5361fe | |
parent | 9dc442cebb90447da1c5969ce6db4786cd32cbdf (diff) |
added the preserve-locale field. Added extra job to attach syslog if traces are present for further investigation
-rw-r--r-- | jobs/miscellanea.txt.in | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/jobs/miscellanea.txt.in b/jobs/miscellanea.txt.in index 320ba714..a162dce8 100644 --- a/jobs/miscellanea.txt.in +++ b/jobs/miscellanea.txt.in @@ -366,3 +366,13 @@ 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. +flags: preserve-locale + +plugin: attachment +category_id: com.canonical.plainbox::miscellanea +estimated_duration: 0.5 +id: miscellanea/attach-syslog +command: if [ -n "$(grep "Call Trace:" /var/log/syslog)" ]; then cat /var/log/syslog; fi +_summary: Attach syslog if Call Trace appears +_description: Attaches a copy of syslog if call traces are present after testing is complete. +flags: preserve-locale |