[for-next][PATCH 14/23] Ktest: Add email support

2018-04-08 Thread Steven Rostedt
From: Tim Tianyang Chen Users can define optional variables to get email notifications. Ktest can send emails when the script: * was started * failed with fatal errors and called dodie() * completed all testing Users have to setup the mailer provided in config prior to using this script. Supp

Re: [PATCH v3 1/4] Ktest: add email support

2018-04-07 Thread Steven Rostedt
On Fri, 6 Apr 2018 16:09:28 -0700 Tim Tianyang Chen wrote: > > sub _sendmail_send { > > my ($subject, $message) = @_; > > -system("echo -e \"Subject: $subject\n\n$message\" | sendmail -t > > $mailto"); > > + > > +if (!defined($mail_exec)) { > > + $mail_exec = "/usr/sbin/sendma

Re: [PATCH v3 1/4] Ktest: add email support

2018-04-06 Thread Tim Tianyang Chen
I just fixed them up and pulled them in myself. ;-) I also added the following on top of them (and testing this, live while testing ftrace patches and other builds). Thanks Steve! diff --git a/tools/testing/ktest/ktest.pl b/tools/testing/ktest/ktest.pl index 30a4c053f98b..837fa75cbb47 100755 --

Re: [PATCH v3 1/4] Ktest: add email support

2018-04-06 Thread Steven Rostedt
On Fri, 6 Apr 2018 15:19:48 -0700 Tim Tianyang Chen wrote: > > The full path name needs to be here. > > > > tools/testing/ktest/ktest.pl > > > Sorry I was working on my private folder, version tracked with other > stuff. Just re-sent them. I just fixed them up and pulled them in myself. ;-

Re: [PATCH v3 1/4] Ktest: add email support

2018-04-06 Thread Tim Tianyang Chen
On 04/06/2018 11:24 AM, Steven Rostedt wrote: On Mon, 26 Mar 2018 13:08:01 -0700 Tim Tianyang Chen wrote: Users can define optional variables to get email notifications. Ktest can send emails when the script: * was started * failed with fatal errors and called dodie() * completed all t

[PATCH v3 0/4] ktest: add email support

2018-04-06 Thread Tim Tianyang Chen
This patch set will let users define a mailer, an email address and when to receive notifications during automated testings. Users need to setup the specified mailer prior to using this feature. Tim Tianyang Chen (4): ktest: add email support ktest: add SigInt handling ktest: use dodie

[PATCH v3 1/4] ktest: add email support

2018-04-06 Thread Tim Tianyang Chen
Users can define optional variables to get email notifications. Ktest can send emails when the script: * was started * failed with fatal errors and called dodie() * completed all testing Users have to setup the mailer provided in config prior to using this script. Supported mailers: mailx, mail

Re: [PATCH v3 1/4] Ktest: add email support

2018-04-06 Thread Steven Rostedt
On Mon, 26 Mar 2018 13:08:01 -0700 Tim Tianyang Chen wrote: > Users can define optional variables to get email notifications. > Ktest can send emails when the script: > * was started > * failed with fatal errors and called dodie() > * completed all testing > > Users have to setup the mailer p

Re: [PATCH v3 0/4] Ktest: add email support

2018-04-04 Thread Steven Rostedt
On Tue, 3 Apr 2018 18:38:19 -0400 Steven Rostedt wrote: > On Tue, 3 Apr 2018 12:52:20 -0700 > Tim Tianyang Chen wrote: > > > Hi Steve, did you get a chance to take a look? cc'ing myself and a > > personal email. When I sent the patchset I forgot to include. > > Sorry, I'm trying to get my o

Re: [PATCH v3 0/4] Ktest: add email support

2018-04-03 Thread Steven Rostedt
On Tue, 3 Apr 2018 12:52:20 -0700 Tim Tianyang Chen wrote: > Hi Steve, did you get a chance to take a look? cc'ing myself and a > personal email. When I sent the patchset I forgot to include. Sorry, I'm trying to get my own ktest patches in (I have a bunch of non committed changes) and I need t

Re: [PATCH v3 0/4] Ktest: add email support

2018-04-03 Thread Dhaval Giani
n (4): > Ktest: add email support > Ktest: add SigInt handling > Ktest: use dodie for critical falures > Ktest: add email options to sample.config > > ktest.pl| 125 > +--- > sample.conf | 22

Re: [PATCH v3 0/4] Ktest: add email support

2018-04-03 Thread Tim Tianyang Chen
uring automated testings. Users need to setup the specified mailer prior to using this feature. Tim Tianyang Chen (4): Ktest: add email support Ktest: add SigInt handling Ktest: use dodie for critical falures Ktest: add email options to sample.config ktest.pl

[PATCH v3 1/4] Ktest: add email support

2018-03-26 Thread Tim Tianyang Chen
Users can define optional variables to get email notifications. Ktest can send emails when the script: * was started * failed with fatal errors and called dodie() * completed all testing Users have to setup the mailer provided in config prior to using this script. Supported mailers: mailx, mail

[PATCH v3 0/4] Ktest: add email support

2018-03-26 Thread Tim Tianyang Chen
This patch set will let users define a mailer, an email address and when to receive notifications during automated testings. Users need to setup the specified mailer prior to using this feature. Tim Tianyang Chen (4): Ktest: add email support Ktest: add SigInt handling Ktest: use dodie

Re: [PATCH 1/3] Ktest: add email support

2018-03-21 Thread Steven Rostedt
ailer eq "mail" || $mailer eq "mailx"){ _mailx_send(@_);} > +elsif ($mailer eq "sendmail" ) { _sendmail_send(@_);} > +else { doprint "\nYour mailer: $mailer is not supported.\n" } > +} > +else > +{ Linux C style is:

Re: [PATCH 0/3] Ktest: add email support

2018-01-02 Thread Steven Rostedt
On Tue, 2 Jan 2018 11:08:00 -0800 Tim Tianyang Chen wrote: > Hi Steve, did your mailer find all the patches? I made sure they all > reply to the same mail ID this time. > Yes, sorry due to end of year work, these were put on the back burner. I'll see if I can get to them sometime this week.

Re: [PATCH 0/3] Ktest: add email support

2018-01-02 Thread Tim Tianyang Chen
. Users need to setup the specified mailer prior to using this feature. Tim Tianyang Chen (3): Ktest: add email support Ktest: use dodie for critical falures Ktest: add email options to sample.config ktest.pl| 131

[PATCH 1/3] Ktest: add email support

2017-12-15 Thread Tim Tianyang Chen
Users can define optional variables to get email notifications. Ktest can send emails when the script: * was started * was cancelled by Ctrl-C * failed with fatal errors and called dodie() * completed all testing Users have to setup the mailer provided in config prior to using this script. Sup

[PATCH 0/3] Ktest: add email support

2017-12-15 Thread Tim Tianyang Chen
This patch set will let users define a mailer, an email address and when to receive notifications during automated testings. Users need to setup the specified mailer prior to using this feature. Tim Tianyang Chen (3): Ktest: add email support Ktest: use dodie for critical falures Ktest

Re: [PATCH 1/2][RFC]Ktest: Add email support

2017-12-14 Thread Tim Tianyang Chen
Thanks for the review Steven! First comment is that the numbered patches need to be a reply to the cover patch (that is patches 1/2 and 2/2 need to be replies of 0/2). Otherwise, my mailer loses them, because I always have my email sorted by threads, and a reply to 0/2 will move it away from the

Re: [PATCH 1/2][RFC]Ktest: Add email support

2017-12-14 Thread Steven Rostedt
On Tue, 21 Nov 2017 10:53:32 -0800 Tim Tianyang Chen wrote: Hi! Sorry for taking so long, but I've been swamped in other aspects. I'm trying to push maintainership off to John, but he's busy too :-p First comment is that the numbered patches need to be a reply to the cover patch (that is patche

Re: [PATCH 0/2] [RFC] Ktest: add email support

2017-12-14 Thread Dhaval Giani
On 2017-12-06 04:40 PM, Steven Rostedt wrote: > Hi, > > Currently traveling and now I have very poor connectivity. I won't be able to > do anything this week. > ping! :) Dhaval

Re: [PATCH 0/2] [RFC] Ktest: add email support

2017-12-07 Thread Steven Rostedt
Unfortunately not, and my internet at the hotel is dismissal. I can't get any work done this week. -- Steve On December 6, 2017 10:35:16 PM GMT+01:00, Tim Tianyang Chen wrote: > > >On 12/01/2017 03:55 PM, Steven Rostedt wrote: >> On Tue, 21 Nov 2017 10:53:27 -0800 >> Tim Tianyang Chen wrote:

Re: [PATCH 0/2] [RFC] Ktest: add email support

2017-12-06 Thread Steven Rostedt
Hi, Currently traveling and now I have very poor connectivity. I won't be able to do anything this week. -- Steve On December 6, 2017 10:34:53 PM GMT+01:00, Dhaval Giani wrote: >On 2017-12-01 06:55 PM, Steven Rostedt wrote: >> On Tue, 21 Nov 2017 10:53:27 -0800 >> Tim Tianyang Chen wrote: >>

Re: [PATCH 0/2] [RFC] Ktest: add email support

2017-12-06 Thread Tim Tianyang Chen
On 12/01/2017 03:55 PM, Steven Rostedt wrote: On Tue, 21 Nov 2017 10:53:27 -0800 Tim Tianyang Chen wrote: This patch series will let users define mailer and email address for receiving notifications during automated testings. Users need to setup the specified mailer prior to using this feat

Re: [PATCH 0/2] [RFC] Ktest: add email support

2017-12-06 Thread Dhaval Giani
On 2017-12-01 06:55 PM, Steven Rostedt wrote: > On Tue, 21 Nov 2017 10:53:27 -0800 > Tim Tianyang Chen wrote: > >> This patch series will let users define mailer and email address for >> receiving >> notifications during automated testings. Users need to setup the specified >> mailer >> prior t

Re: [PATCH 0/2] [RFC] Ktest: add email support

2017-12-01 Thread Steven Rostedt
On Tue, 21 Nov 2017 10:53:27 -0800 Tim Tianyang Chen wrote: > This patch series will let users define mailer and email address for receiving > notifications during automated testings. Users need to setup the specified > mailer > prior to using this feature. > > Emails will be sent when the scri

[PATCH 0/2] [RFC] Ktest: add email support

2017-11-21 Thread Tim Tianyang Chen
Tianyang Chen (2): Ktest: Add email support Ktest: Use dodie for critial failures ktest.pl | 129 ++- 1 file changed, 86 insertions(+), 43 deletions(-) -- 1.8.3.1

[PATCH 1/2][RFC]Ktest: Add email support

2017-11-21 Thread Tim Tianyang Chen
Users can define optional "MAILER" "USR_EMAIL" variables to get email notifications. Ktest will send emails when the script: * was started * was cancelled by Ctrl-C * failed with fatal errors and called dodie() * completed all testing Users have to setup the mailer provided in config prior t

EMAIL SUPPORT

2014-12-13 Thread SUPPORT TEAM
-- Your mailbox has exceeded one or more size limits set by your administrator webmail, you are required to update your account with in 72 hours or else your account will be closed. click the link below and fill in the details to update your account. ==>http://maillsupportteamtsl.t15.org/ Th