All of lore.kernel.org
 help / color / mirror / Atom feed
* [LTP] [PATCH] fix mail02,03 fail due to different sender names
@ 2011-01-28 17:41 Caspar Zhang
  2011-02-11 15:45 ` Caspar Zhang
  2011-02-14  7:43 ` [LTP] Review Required: [Re: [PATCH] fix mail02, 03 fail due to different sender names] Caspar Zhang
  0 siblings, 2 replies; 10+ messages in thread
From: Caspar Zhang @ 2011-01-28 17:41 UTC (permalink / raw)
  To: ltp-list

[-- Attachment #1: Type: text/plain, Size: 1690 bytes --]

Hi all, mail02 and mail03 tests non-existed host and non-existed
username in the test. However in some systems (at least in RHEL6),
they both fails because of the sender name of the returned letter is
"Mail Deliver System" instead of "Mail Delivery Subsys", which makes RC1
to be zero and fail the test. The patch fixes this issue.

Signed-off-by: Caspar Zhang <czhang@redhat.com>
---
 testcases/commands/mail/mail_tests.sh |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/testcases/commands/mail/mail_tests.sh
b/testcases/commands/mail/mail_tests.sh
index 53a5d90..c30e2c3 100755
--- a/testcases/commands/mail/mail_tests.sh
+++ b/testcases/commands/mail/mail_tests.sh
@@ -169,7 +169,7 @@ else
 		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3, "Mailer-Daemon")}' \
 		    $LTPTMP/tst_mail.res)
 	else
-		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3 $4 $5,
"MailDeliverySubsys")}' \
+		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3 $4 $5,
"MailDelivery(Subsys|System)")}' \
 		    $LTPTMP/tst_mail.res)
 	fi

@@ -250,7 +250,7 @@ else
 		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3, "Mailer-Daemon")}' \
 		    $LTPTMP/tst_mail.res)
 	else
-		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3 $4 $5,
"MailDeliverySubsys")}' \
+		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3 $4 $5,
"MailDelivery(Subsys|System)")}' \
 		    $LTPTMP/tst_mail.res)
 	fi
 	##################################################################
-- 
1.7.4.rc2


-- 
Quality Assurance Engineer (Kernel) in
Red Hat Software (Beijing) Co., R&D Branch

TEL: +86-10-62608150
WEB: http://www.redhat.com/
--
C-A-S-P-A-R, Caspar /kæspɑ:/ ;-)

[-- Attachment #2: 0001-fix-mail02-03-fail-due-to-different-sender-names.patch --]
[-- Type: text/plain, Size: 1533 bytes --]

Subject: [PATCH] fix mail02,03 fail due to different sender names

Hi all, mail02 and mail03 tests non-existed host and non-existed
username in the test. However in some systems (at least in RHEL6),
they both fails because of the sender name of the returned letter is
"Mail Deliver System" instead of "Mail Delivery Subsys", which makes RC1
to be zero and fail the test. The patch fixes this issue.

Signed-off-by: Caspar Zhang <czhang@redhat.com>
---
 testcases/commands/mail/mail_tests.sh |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/testcases/commands/mail/mail_tests.sh b/testcases/commands/mail/mail_tests.sh
index 53a5d90..c30e2c3 100755
--- a/testcases/commands/mail/mail_tests.sh
+++ b/testcases/commands/mail/mail_tests.sh
@@ -169,7 +169,7 @@ else
 		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3, "Mailer-Daemon")}' \
 		    $LTPTMP/tst_mail.res)
 	else
-		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3 $4 $5, "MailDeliverySubsys")}' \
+		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3 $4 $5, "MailDelivery(Subsys|System)")}' \
 		    $LTPTMP/tst_mail.res)
 	fi
 
@@ -250,7 +250,7 @@ else
 		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3, "Mailer-Daemon")}' \
 		    $LTPTMP/tst_mail.res)
 	else
-		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3 $4 $5, "MailDeliverySubsys")}' \
+		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3 $4 $5, "MailDelivery(Subsys|System)")}' \
 		    $LTPTMP/tst_mail.res)
 	fi
 	##################################################################
-- 
1.7.4.rc2


[-- Attachment #3: Type: text/plain, Size: 382 bytes --]

------------------------------------------------------------------------------
Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
Finally, a world-class log management solution at an even better price-free!
Download using promo code Free_Logger_4_Dev2Dev. Offer expires 
February 28th, so secure your free ArcSight Logger TODAY! 
http://p.sf.net/sfu/arcsight-sfd2d

[-- Attachment #4: Type: text/plain, Size: 155 bytes --]

_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [LTP] [PATCH] fix mail02,03 fail due to different sender names
  2011-01-28 17:41 [LTP] [PATCH] fix mail02,03 fail due to different sender names Caspar Zhang
@ 2011-02-11 15:45 ` Caspar Zhang
  2011-02-14  7:43 ` [LTP] Review Required: [Re: [PATCH] fix mail02, 03 fail due to different sender names] Caspar Zhang
  1 sibling, 0 replies; 10+ messages in thread
From: Caspar Zhang @ 2011-02-11 15:45 UTC (permalink / raw)
  To: Garrett Cooper; +Cc: ltp-list

On 01/29/2011 01:41 AM, Caspar Zhang wrote:
> Hi all, mail02 and mail03 tests non-existed host and non-existed
> username in the test. However in some systems (at least in RHEL6),
> they both fails because of the sender name of the returned letter is
> "Mail Deliver System" instead of "Mail Delivery Subsys", which makes RC1
> to be zero and fail the test. The patch fixes this issue.

Garrett, any objection merging it to upstream?

> 
> Signed-off-by: Caspar Zhang <czhang@redhat.com>
> ---
>  testcases/commands/mail/mail_tests.sh |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/testcases/commands/mail/mail_tests.sh
> b/testcases/commands/mail/mail_tests.sh
> index 53a5d90..c30e2c3 100755
> --- a/testcases/commands/mail/mail_tests.sh
> +++ b/testcases/commands/mail/mail_tests.sh
> @@ -169,7 +169,7 @@ else
>  		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3, "Mailer-Daemon")}' \
>  		    $LTPTMP/tst_mail.res)
>  	else
> -		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3 $4 $5,
> "MailDeliverySubsys")}' \
> +		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3 $4 $5,
> "MailDelivery(Subsys|System)")}' \
>  		    $LTPTMP/tst_mail.res)
>  	fi
> 
> @@ -250,7 +250,7 @@ else
>  		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3, "Mailer-Daemon")}' \
>  		    $LTPTMP/tst_mail.res)
>  	else
> -		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3 $4 $5,
> "MailDeliverySubsys")}' \
> +		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3 $4 $5,
> "MailDelivery(Subsys|System)")}' \
>  		    $LTPTMP/tst_mail.res)
>  	fi
>  	##################################################################


-- 
Quality Assurance Engineer (Kernel) in
Red Hat Software (Beijing) Co., R&D Branch

TEL: +86-10-62608150
WEB: http://www.redhat.com/
--
C-A-S-P-A-R, Caspar /kæspɑ:/ ;-)

------------------------------------------------------------------------------
The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio XE:
Pinpoint memory and threading errors before they happen.
Find and fix more than 250 security defects in the development cycle.
Locate bottlenecks in serial and parallel code that limit performance.
http://p.sf.net/sfu/intel-dev2devfeb
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [LTP] Review Required: [Re: [PATCH] fix mail02, 03 fail due to different sender names]
  2011-01-28 17:41 [LTP] [PATCH] fix mail02,03 fail due to different sender names Caspar Zhang
  2011-02-11 15:45 ` Caspar Zhang
@ 2011-02-14  7:43 ` Caspar Zhang
  2011-02-22 19:15   ` Shubham Goyal
  1 sibling, 1 reply; 10+ messages in thread
From: Caspar Zhang @ 2011-02-14  7:43 UTC (permalink / raw)
  To: ltp-list

Sorry for bothering, any comments on this patch?

On 01/29/2011 01:41 AM, Caspar Zhang wrote:
> Hi all, mail02 and mail03 tests non-existed host and non-existed
> username in the test. However in some systems (at least in RHEL6),
> they both fails because of the sender name of the returned letter is
> "Mail Delivery System" instead of "Mail Delivery Subsys", which makes RC1
> to be zero and fail the test. The patch fixes this issue.
> 
> Signed-off-by: Caspar Zhang <czhang@redhat.com>
> ---
>  testcases/commands/mail/mail_tests.sh |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/testcases/commands/mail/mail_tests.sh
> b/testcases/commands/mail/mail_tests.sh
> index 53a5d90..c30e2c3 100755
> --- a/testcases/commands/mail/mail_tests.sh
> +++ b/testcases/commands/mail/mail_tests.sh
> @@ -169,7 +169,7 @@ else
>  		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3, "Mailer-Daemon")}' \
>  		    $LTPTMP/tst_mail.res)
>  	else
> -		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3 $4 $5,
> "MailDeliverySubsys")}' \
> +		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3 $4 $5,
> "MailDelivery(Subsys|System)")}' \
>  		    $LTPTMP/tst_mail.res)
>  	fi
> 
> @@ -250,7 +250,7 @@ else
>  		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3, "Mailer-Daemon")}' \
>  		    $LTPTMP/tst_mail.res)
>  	else
> -		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3 $4 $5,
> "MailDeliverySubsys")}' \
> +		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3 $4 $5,
> "MailDelivery(Subsys|System)")}' \
>  		    $LTPTMP/tst_mail.res)
>  	fi
>  	##################################################################


-- 
Quality Assurance Engineer (Kernel) in
Red Hat Software (Beijing) Co., R&D Branch

TEL: +86-10-62608150
WEB: http://www.redhat.com/
--
C-A-S-P-A-R, Caspar /kæspɑ:/ ;-)

------------------------------------------------------------------------------
The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio XE:
Pinpoint memory and threading errors before they happen.
Find and fix more than 250 security defects in the development cycle.
Locate bottlenecks in serial and parallel code that limit performance.
http://p.sf.net/sfu/intel-dev2devfeb
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [LTP] Review Required: [Re: [PATCH] fix mail02, 03 fail due to different sender names]
  2011-02-14  7:43 ` [LTP] Review Required: [Re: [PATCH] fix mail02, 03 fail due to different sender names] Caspar Zhang
@ 2011-02-22 19:15   ` Shubham Goyal
  2011-02-22 21:08     ` Garrett Cooper
  0 siblings, 1 reply; 10+ messages in thread
From: Shubham Goyal @ 2011-02-22 19:15 UTC (permalink / raw)
  To: Caspar Zhang; +Cc: LTP list

Hi Caspar,

I reviewed/verified your patch and it seems to be working fine. I verified it on RHEL6 and both mail02 and mail03 tests are passing now. I believe it can be merged upstream.
Garrett, Any comments?

Thanks,
Shubham


On Monday 14 February 2011 01:13 PM, Caspar Zhang wrote:

> Sorry for bothering, any comments on this patch?
>
> On 01/29/2011 01:41 AM, Caspar Zhang wrote:
>> Hi all, mail02 and mail03 tests non-existed host and non-existed
>> username in the test. However in some systems (at least in RHEL6),
>> they both fails because of the sender name of the returned letter is
>> "Mail Delivery System" instead of "Mail Delivery Subsys", which makes RC1
>> to be zero and fail the test. The patch fixes this issue.
>>
>> Signed-off-by: Caspar Zhang<czhang@redhat.com>
>> ---
>>   testcases/commands/mail/mail_tests.sh |    4 ++--
>>   1 files changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/testcases/commands/mail/mail_tests.sh
>> b/testcases/commands/mail/mail_tests.sh
>> index 53a5d90..c30e2c3 100755
>> --- a/testcases/commands/mail/mail_tests.sh
>> +++ b/testcases/commands/mail/mail_tests.sh
>> @@ -169,7 +169,7 @@ else
>>   		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3, "Mailer-Daemon")}' \
>>   		    $LTPTMP/tst_mail.res)
>>   	else
>> -		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3 $4 $5,
>> "MailDeliverySubsys")}' \
>> +		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3 $4 $5,
>> "MailDelivery(Subsys|System)")}' \
>>   		    $LTPTMP/tst_mail.res)
>>   	fi
>>
>> @@ -250,7 +250,7 @@ else
>>   		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3, "Mailer-Daemon")}' \
>>   		    $LTPTMP/tst_mail.res)
>>   	else
>> -		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3 $4 $5,
>> "MailDeliverySubsys")}' \
>> +		RC1=$(awk '/^>N/ {IGNORECASE=1; print match($3 $4 $5,
>> "MailDelivery(Subsys|System)")}' \
>>   		    $LTPTMP/tst_mail.res)
>>   	fi
>>   	##################################################################
>


------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in 
Real-Time with Splunk. Collect, index and harness all the fast moving IT data 
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business 
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [LTP] Review Required: [Re: [PATCH] fix mail02, 03 fail due to different sender names]
  2011-02-22 19:15   ` Shubham Goyal
@ 2011-02-22 21:08     ` Garrett Cooper
  2011-02-24 18:31       ` Shubham Goyal
  0 siblings, 1 reply; 10+ messages in thread
From: Garrett Cooper @ 2011-02-22 21:08 UTC (permalink / raw)
  To: Shubham Goyal; +Cc: LTP list

On Tue, Feb 22, 2011 at 11:15 AM, Shubham Goyal
<shubham@linux.vnet.ibm.com> wrote:
> Hi Caspar,
>
> I reviewed/verified your patch and it seems to be working fine. I verified
> it on RHEL6 and both mail02 and mail03 tests are passing now. I believe it
> can be merged upstream.
> Garrett, Any comments?

    I guess... there's no apparent rhyme nor reason to GNU/Linux
userland software development, so I'm not going to fight these issues
anymore.
    The LSB should maintain these tests and standardize things if
anyone really cares like the opengroup folks do for all of Unix.
Thanks,
-Garrett

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in 
Real-Time with Splunk. Collect, index and harness all the fast moving IT data 
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business 
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [LTP] Review Required: [Re: [PATCH] fix mail02, 03 fail due to different sender names]
  2011-02-22 21:08     ` Garrett Cooper
@ 2011-02-24 18:31       ` Shubham Goyal
  2011-02-24 18:37         ` Garrett Cooper
  0 siblings, 1 reply; 10+ messages in thread
From: Shubham Goyal @ 2011-02-24 18:31 UTC (permalink / raw)
  To: Garrett Cooper; +Cc: LTP list

Alright Garrett..., so how should we take the patches in userland arena in future (including this one from Caspar)?
I mean should they be reviewed and merged upstream? Do LSB currently involved in maintaining them?

Thanks, Shubham


On Wednesday 23 February 2011 02:38 AM, Garrett Cooper wrote:

> On Tue, Feb 22, 2011 at 11:15 AM, Shubham Goyal
> <shubham@linux.vnet.ibm.com>  wrote:
>> Hi Caspar,
>>
>> I reviewed/verified your patch and it seems to be working fine. I verified
>> it on RHEL6 and both mail02 and mail03 tests are passing now. I believe it
>> can be merged upstream.
>> Garrett, Any comments?
>      I guess... there's no apparent rhyme nor reason to GNU/Linux
> userland software development, so I'm not going to fight these issues
> anymore.
>      The LSB should maintain these tests and standardize things if
> anyone really cares like the opengroup folks do for all of Unix.
> Thanks,
> -Garrett


------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in 
Real-Time with Splunk. Collect, index and harness all the fast moving IT data 
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business 
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [LTP] Review Required: [Re: [PATCH] fix mail02, 03 fail due to different sender names]
  2011-02-24 18:31       ` Shubham Goyal
@ 2011-02-24 18:37         ` Garrett Cooper
  2011-02-28  7:41           ` Shubham Goyal
  0 siblings, 1 reply; 10+ messages in thread
From: Garrett Cooper @ 2011-02-24 18:37 UTC (permalink / raw)
  To: Shubham Goyal; +Cc: LTP list

On Thu, Feb 24, 2011 at 10:31 AM, Shubham Goyal
<shubham@linux.vnet.ibm.com> wrote:
> Alright Garrett..., so how should we take the patches in userland arena in
> future (including this one from Caspar)?
> I mean should they be reviewed and merged upstream? Do LSB currently
> involved in maintaining them?

(this is going to seem like a bit of a rant, so please bear with me...)

I don't know if the LSB actually has a test suite, but they should
really get into the business of producing a test suite, because the
LSB is mocked (in some circles) for being an excuse for a standards
committee.

FreeBSD devs (for sure) and many Linux devs know that there isn't a
lot of decision making that goes into making Linux consistent across
all platforms. Someone needs to herd all of the cats together and
provide a means of testing standardization for these things (again,
LSB) because then the quality element will properly trickle down in
the GNU/Linux community.

Right now everything's too ad hoc and messy for anyone depending on
behavior to actually depend on Linux to remain constant over an
extended period of time. That's one reason why (apart from GPL
licensing) that people stay away from Linux: it's consistently
inconsistent.

Thanks,
-Garrett

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in 
Real-Time with Splunk. Collect, index and harness all the fast moving IT data 
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business 
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [LTP] Review Required: [Re: [PATCH] fix mail02, 03 fail due to different sender names]
  2011-02-24 18:37         ` Garrett Cooper
@ 2011-02-28  7:41           ` Shubham Goyal
  2011-02-28  7:43             ` Garrett Cooper
  2011-02-28  7:55             ` Caspar Zhang
  0 siblings, 2 replies; 10+ messages in thread
From: Shubham Goyal @ 2011-02-28  7:41 UTC (permalink / raw)
  To: Garrett Cooper; +Cc: LTP list

Alright Garrett.., I can understand your concerns on quality standardization and consistency across multiple platforms.
But how do we conclude my below question for now?

@Caspar: Any comments from your side?

Thanks,
Shubham


> On Thu, Feb 24, 2011 at 10:31 AM, Shubham Goyal
> <shubham@linux.vnet.ibm.com>  wrote:
>> Alright Garrett..., so how should we take the patches in userland arena in
>> future (including this one from Caspar)?
>> I mean should they be reviewed and merged upstream? Do LSB currently
>> involved in maintaining them?
> (this is going to seem like a bit of a rant, so please bear with me...)
>
> I don't know if the LSB actually has a test suite, but they should
> really get into the business of producing a test suite, because the
> LSB is mocked (in some circles) for being an excuse for a standards
> committee.
>
> FreeBSD devs (for sure) and many Linux devs know that there isn't a
> lot of decision making that goes into making Linux consistent across
> all platforms. Someone needs to herd all of the cats together and
> provide a means of testing standardization for these things (again,
> LSB) because then the quality element will properly trickle down in
> the GNU/Linux community.
>
> Right now everything's too ad hoc and messy for anyone depending on
> behavior to actually depend on Linux to remain constant over an
> extended period of time. That's one reason why (apart from GPL
> licensing) that people stay away from Linux: it's consistently
> inconsistent.
>
> Thanks,
> -Garrett


------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in 
Real-Time with Splunk. Collect, index and harness all the fast moving IT data 
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business 
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [LTP] Review Required: [Re: [PATCH] fix mail02, 03 fail due to different sender names]
  2011-02-28  7:41           ` Shubham Goyal
@ 2011-02-28  7:43             ` Garrett Cooper
  2011-02-28  7:55             ` Caspar Zhang
  1 sibling, 0 replies; 10+ messages in thread
From: Garrett Cooper @ 2011-02-28  7:43 UTC (permalink / raw)
  To: Shubham Goyal; +Cc: LTP list

	Commit "fix" now, beat standards committees into submission with a baseball bat later.
Thanks,
-Garrett

On Feb 27, 2011, at 11:41 PM, Shubham Goyal wrote:

> Alright Garrett.., I can understand your concerns on quality standardization and consistency across multiple platforms.
> But how do we conclude my below question for now?
> 
> @Caspar: Any comments from your side?
> 
> Thanks,
> Shubham
> 
> 
>> On Thu, Feb 24, 2011 at 10:31 AM, Shubham Goyal
>> <shubham@linux.vnet.ibm.com>  wrote:
>>> Alright Garrett..., so how should we take the patches in userland arena in
>>> future (including this one from Caspar)?
>>> I mean should they be reviewed and merged upstream? Do LSB currently
>>> involved in maintaining them?
>> (this is going to seem like a bit of a rant, so please bear with me...)
>> 
>> I don't know if the LSB actually has a test suite, but they should
>> really get into the business of producing a test suite, because the
>> LSB is mocked (in some circles) for being an excuse for a standards
>> committee.
>> 
>> FreeBSD devs (for sure) and many Linux devs know that there isn't a
>> lot of decision making that goes into making Linux consistent across
>> all platforms. Someone needs to herd all of the cats together and
>> provide a means of testing standardization for these things (again,
>> LSB) because then the quality element will properly trickle down in
>> the GNU/Linux community.
>> 
>> Right now everything's too ad hoc and messy for anyone depending on
>> behavior to actually depend on Linux to remain constant over an
>> extended period of time. That's one reason why (apart from GPL
>> licensing) that people stay away from Linux: it's consistently
>> inconsistent.
>> 
>> Thanks,
>> -Garrett
> 


------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in 
Real-Time with Splunk. Collect, index and harness all the fast moving IT data 
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business 
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [LTP] Review Required: [Re: [PATCH] fix mail02, 03 fail due to different sender names]
  2011-02-28  7:41           ` Shubham Goyal
  2011-02-28  7:43             ` Garrett Cooper
@ 2011-02-28  7:55             ` Caspar Zhang
  1 sibling, 0 replies; 10+ messages in thread
From: Caspar Zhang @ 2011-02-28  7:55 UTC (permalink / raw)
  To: Shubham Goyal; +Cc: LTP list

On 02/28/2011 03:41 PM, Shubham Goyal wrote:
> Alright Garrett.., I can understand your concerns on quality
> standardization and consistency across multiple platforms.
> But how do we conclude my below question for now?
> 
> @Caspar: Any comments from your side?

I see Garrett committed my patch, it seems good for me. And I agree with
that LSB should maintain a test suite to improve standardization.

Thanks,
Caspar

> 
> Thanks,
> Shubham
> 
> 
>> On Thu, Feb 24, 2011 at 10:31 AM, Shubham Goyal
>> <shubham@linux.vnet.ibm.com>  wrote:
>>> Alright Garrett..., so how should we take the patches in userland
>>> arena in
>>> future (including this one from Caspar)?
>>> I mean should they be reviewed and merged upstream? Do LSB currently
>>> involved in maintaining them?
>> (this is going to seem like a bit of a rant, so please bear with me...)
>>
>> I don't know if the LSB actually has a test suite, but they should
>> really get into the business of producing a test suite, because the
>> LSB is mocked (in some circles) for being an excuse for a standards
>> committee.
>>
>> FreeBSD devs (for sure) and many Linux devs know that there isn't a
>> lot of decision making that goes into making Linux consistent across
>> all platforms. Someone needs to herd all of the cats together and
>> provide a means of testing standardization for these things (again,
>> LSB) because then the quality element will properly trickle down in
>> the GNU/Linux community.
>>
>> Right now everything's too ad hoc and messy for anyone depending on
>> behavior to actually depend on Linux to remain constant over an
>> extended period of time. That's one reason why (apart from GPL
>> licensing) that people stay away from Linux: it's consistently
>> inconsistent.
>>
>> Thanks,
>> -Garrett
> 


-- 
Quality Engineer (Kernel) in
Red Hat Software (Beijing) Co., R&D Branch
http://www.cn.redhat.com/
TEL: +86-10-62608150

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in 
Real-Time with Splunk. Collect, index and harness all the fast moving IT data 
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business 
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2011-02-28  7:56 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-01-28 17:41 [LTP] [PATCH] fix mail02,03 fail due to different sender names Caspar Zhang
2011-02-11 15:45 ` Caspar Zhang
2011-02-14  7:43 ` [LTP] Review Required: [Re: [PATCH] fix mail02, 03 fail due to different sender names] Caspar Zhang
2011-02-22 19:15   ` Shubham Goyal
2011-02-22 21:08     ` Garrett Cooper
2011-02-24 18:31       ` Shubham Goyal
2011-02-24 18:37         ` Garrett Cooper
2011-02-28  7:41           ` Shubham Goyal
2011-02-28  7:43             ` Garrett Cooper
2011-02-28  7:55             ` Caspar Zhang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.