public inbox for ltp@lists.linux.it
 help / color / mirror / Atom feed
* [LTP] [PATCH 1/1] say FAIL not PASS when we failed
@ 2010-01-04 17:16 Serge E. Hallyn
  2010-01-04 22:59 ` Garrett Cooper
  0 siblings, 1 reply; 10+ messages in thread
From: Serge E. Hallyn @ 2010-01-04 17:16 UTC (permalink / raw)
  To: LTP list

Signed-off-by: Serge E. Hallyn <serue@us.ibm.com>
---
 testcases/kernel/security/p9auth/p9priv.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/testcases/kernel/security/p9auth/p9priv.sh b/testcases/kernel/security/p9auth/p9priv.sh
index ad2eead..c1a14d0 100755
--- a/testcases/kernel/security/p9auth/p9priv.sh
+++ b/testcases/kernel/security/p9auth/p9priv.sh
@@ -101,7 +101,7 @@ while [ ! -f $LTPTMP/d/childready ]; do :; done
 touch $LTPTMP/childgo
 while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ]; do :; done;
 if [ -f $LTPTMP/d/childpass ]; then
-	echo "PASS: child could setuid from wrong source uid"
+	echo "FAIL: child could setuid from wrong source uid"
 	exit 1
 fi
 echo "PASS: child couldn't setuid from wrong source uid"
-- 
1.6.1.1


------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
_______________________________________________
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 1/1] say FAIL not PASS when we failed
  2010-01-04 17:16 [LTP] [PATCH 1/1] say FAIL not PASS when we failed Serge E. Hallyn
@ 2010-01-04 22:59 ` Garrett Cooper
  2010-01-04 23:36   ` Serge E. Hallyn
  0 siblings, 1 reply; 10+ messages in thread
From: Garrett Cooper @ 2010-01-04 22:59 UTC (permalink / raw)
  To: Serge E. Hallyn; +Cc: LTP list

On Jan 4, 2010, at 9:16 AM, "Serge E. Hallyn" <serue@us.ibm.com> wrote:

> Signed-off-by: Serge E. Hallyn <serue@us.ibm.com>
> ---
> testcases/kernel/security/p9auth/p9priv.sh |    2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/testcases/kernel/security/p9auth/p9priv.sh b/testcases/ 
> kernel/security/p9auth/p9priv.sh
> index ad2eead..c1a14d0 100755
> --- a/testcases/kernel/security/p9auth/p9priv.sh
> +++ b/testcases/kernel/security/p9auth/p9priv.sh
> @@ -101,7 +101,7 @@ while [ ! -f $LTPTMP/d/childready ]; do :; done
> touch $LTPTMP/childgo
> while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ];  
> do :; done;
> if [ -f $LTPTMP/d/childpass ]; then
> -    echo "PASS: child could setuid from wrong source uid"
> +    echo "FAIL: child could setuid from wrong source uid"
>    exit 1
> fi
> echo "PASS: child couldn't setuid from wrong source uid"
> -- 
> 1.6.1.1

Is there a reason why this isn't using tst_resm?
Thanks,
-Garrett

------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-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] [PATCH 1/1] say FAIL not PASS when we failed
  2010-01-04 22:59 ` Garrett Cooper
@ 2010-01-04 23:36   ` Serge E. Hallyn
  2010-01-05  2:12     ` Garrett Cooper
  0 siblings, 1 reply; 10+ messages in thread
From: Serge E. Hallyn @ 2010-01-04 23:36 UTC (permalink / raw)
  To: Garrett Cooper; +Cc: LTP list

Quoting Garrett Cooper (yanegomi@gmail.com):
> On Jan 4, 2010, at 9:16 AM, "Serge E. Hallyn" <serue@us.ibm.com> wrote:
> 
> >Signed-off-by: Serge E. Hallyn <serue@us.ibm.com>
> >---
> >testcases/kernel/security/p9auth/p9priv.sh |    2 +-
> >1 files changed, 1 insertions(+), 1 deletions(-)
> >
> >diff --git a/testcases/kernel/security/p9auth/p9priv.sh
> >b/testcases/kernel/security/p9auth/p9priv.sh
> >index ad2eead..c1a14d0 100755
> >--- a/testcases/kernel/security/p9auth/p9priv.sh
> >+++ b/testcases/kernel/security/p9auth/p9priv.sh
> >@@ -101,7 +101,7 @@ while [ ! -f $LTPTMP/d/childready ]; do :; done
> >touch $LTPTMP/childgo
> >while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ]; do
> >:; done;
> >if [ -f $LTPTMP/d/childpass ]; then
> >-    echo "PASS: child could setuid from wrong source uid"
> >+    echo "FAIL: child could setuid from wrong source uid"
> >   exit 1
> >fi
> >echo "PASS: child couldn't setuid from wrong source uid"
> >-- 
> >1.6.1.1
> 
> Is there a reason why this isn't using tst_resm?

No good reason

thanks,
-serge

------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-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] [PATCH 1/1] say FAIL not PASS when we failed
  2010-01-04 23:36   ` Serge E. Hallyn
@ 2010-01-05  2:12     ` Garrett Cooper
  2010-01-05 15:30       ` Serge E. Hallyn
  0 siblings, 1 reply; 10+ messages in thread
From: Garrett Cooper @ 2010-01-05  2:12 UTC (permalink / raw)
  To: Serge E. Hallyn; +Cc: LTP list

On Jan 4, 2010, at 3:36 PM, "Serge E. Hallyn" <serue@us.ibm.com> wrote:

> Quoting Garrett Cooper (yanegomi@gmail.com):
>> On Jan 4, 2010, at 9:16 AM, "Serge E. Hallyn" <serue@us.ibm.com>  
>> wrote:
>>
>>> Signed-off-by: Serge E. Hallyn <serue@us.ibm.com>
>>> ---
>>> testcases/kernel/security/p9auth/p9priv.sh |    2 +-
>>> 1 files changed, 1 insertions(+), 1 deletions(-)
>>>
>>> diff --git a/testcases/kernel/security/p9auth/p9priv.sh
>>> b/testcases/kernel/security/p9auth/p9priv.sh
>>> index ad2eead..c1a14d0 100755
>>> --- a/testcases/kernel/security/p9auth/p9priv.sh
>>> +++ b/testcases/kernel/security/p9auth/p9priv.sh
>>> @@ -101,7 +101,7 @@ while [ ! -f $LTPTMP/d/childready ]; do :; done
>>> touch $LTPTMP/childgo
>>> while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ]; do
>>> :; done;
>>> if [ -f $LTPTMP/d/childpass ]; then
>>> -    echo "PASS: child could setuid from wrong source uid"
>>> +    echo "FAIL: child could setuid from wrong source uid"
>>>  exit 1
>>> fi
>>> echo "PASS: child couldn't setuid from wrong source uid"
>>> -- 
>>> 1.6.1.1
>>
>> Is there a reason why this isn't using tst_resm?
>
> No good reason

Could this be converted then :)?
-Garrett

------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-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] [PATCH 1/1] say FAIL not PASS when we failed
  2010-01-05  2:12     ` Garrett Cooper
@ 2010-01-05 15:30       ` Serge E. Hallyn
  2010-01-05 16:45         ` Garrett Cooper
  0 siblings, 1 reply; 10+ messages in thread
From: Serge E. Hallyn @ 2010-01-05 15:30 UTC (permalink / raw)
  To: Garrett Cooper; +Cc: LTP list

Quoting Garrett Cooper (yanegomi@gmail.com):
> On Jan 4, 2010, at 3:36 PM, "Serge E. Hallyn" <serue@us.ibm.com> wrote:
> 
> >Quoting Garrett Cooper (yanegomi@gmail.com):
> >>On Jan 4, 2010, at 9:16 AM, "Serge E. Hallyn" <serue@us.ibm.com>
> >>wrote:
> >>
> >>>Signed-off-by: Serge E. Hallyn <serue@us.ibm.com>
> >>>---
> >>>testcases/kernel/security/p9auth/p9priv.sh |    2 +-
> >>>1 files changed, 1 insertions(+), 1 deletions(-)
> >>>
> >>>diff --git a/testcases/kernel/security/p9auth/p9priv.sh
> >>>b/testcases/kernel/security/p9auth/p9priv.sh
> >>>index ad2eead..c1a14d0 100755
> >>>--- a/testcases/kernel/security/p9auth/p9priv.sh
> >>>+++ b/testcases/kernel/security/p9auth/p9priv.sh
> >>>@@ -101,7 +101,7 @@ while [ ! -f $LTPTMP/d/childready ]; do :; done
> >>>touch $LTPTMP/childgo
> >>>while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ]; do
> >>>:; done;
> >>>if [ -f $LTPTMP/d/childpass ]; then
> >>>-    echo "PASS: child could setuid from wrong source uid"
> >>>+    echo "FAIL: child could setuid from wrong source uid"
> >>> exit 1
> >>>fi
> >>>echo "PASS: child couldn't setuid from wrong source uid"
> >>>-- 
> >>>1.6.1.1
> >>
> >>Is there a reason why this isn't using tst_resm?
> >
> >No good reason
> 
> Could this be converted then :)?

This appears to work.

thanks,
-serge

From 05713db9e0db910fa2fdfa85c452f0be8d820e8c Mon Sep 17 00:00:00 2001
From: Serge E. Hallyn <serue@us.ibm.com>
Date: Tue, 5 Jan 2010 10:30:11 -0500
Subject: [PATCH 1/1] p9auth: use tst_resm

Signed-off-by: Serge E. Hallyn <serue@us.ibm.com>
---
 testcases/kernel/security/p9auth/p9priv.sh   |   25 ++++++++++++++++---------
 testcases/kernel/security/p9auth/p9unpriv.sh |    2 +-
 2 files changed, 17 insertions(+), 10 deletions(-)

diff --git a/testcases/kernel/security/p9auth/p9priv.sh b/testcases/kernel/security/p9auth/p9priv.sh
index c1a14d0..0f3ea7e 100755
--- a/testcases/kernel/security/p9auth/p9priv.sh
+++ b/testcases/kernel/security/p9auth/p9priv.sh
@@ -19,7 +19,12 @@
 ##                                                                            ##
 ################################################################################
 
-LTPTMP=/tmp/p9auth_ltp
+export LTPTMP=/tmp/p9auth_ltp
+export TST_TOTAL=3
+export TCID="p9auth"
+
+export TST_COUNT=1
+
 rm -rf $LTPTMP
 mkdir $LTPTMP
 chmod 755 $LTPTMP
@@ -37,14 +42,14 @@ cleanup() {
 }
 
 if [ `id -u` -ne 0 ]; then
-	echo "Must start p9auth tests as root"
+	tst_resm TBROK "Must start p9auth tests as root"
 	exit 1
 fi
 
 ltpuid=`grep ltp /etc/passwd | head -1 | awk -F: '{ print $3 '}`
 ret=$?
 if [ $? -ne 0 ]; then
-	echo "Failed to find ltp userid"
+	tst_resm TCONF "Failed to find ltp userid"
 	exit 1
 fi
 
@@ -57,12 +62,13 @@ while [ ! -f $LTPTMP/d/childready ]; do :; done
 touch $LTPTMP/childgo
 while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ]; do :; done;
 if [ -f $LTPTMP/d/childpass ]; then
-	echo "FAIL: child could setuid with bad hash"
+	tst_resm TFAIL "FAIL: child could setuid with bad hash"
 	exit 1
 fi
-echo "PASS: child couldn't setuid with bad hash"
+tst_resm TPASS "PASS: child couldn't setuid with bad hash"
 
 # TEST 2: ltp setuids to 0 with valid hash
+export TST_COUNT=2
 
 # create the hash.  randstr doesn't have to be int, but it's ok
 cleanup
@@ -80,12 +86,13 @@ while [ ! -f $LTPTMP/d/childready ]; do :; done
 touch $LTPTMP/childgo
 while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ]; do :; done;
 if [ -f $LTPTMP/d/childfail ]; then
-	echo "FAIL: child couldn't setuid with good hash"
+	tst_resm TFAIL "FAIL: child couldn't setuid with good hash"
 	exit 1
 fi
-echo "PASS: child could setuid with good hash"
+tst_resm TPASS "PASS: child could setuid with good hash"
 
 # TEST 3: 0 setuids to 0 with hash valid for ltp user
+export TST_COUNT=3
 cleanup
 randstr=$RANDOM
 txt="0@0"
@@ -101,10 +108,10 @@ while [ ! -f $LTPTMP/d/childready ]; do :; done
 touch $LTPTMP/childgo
 while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ]; do :; done;
 if [ -f $LTPTMP/d/childpass ]; then
-	echo "FAIL: child could setuid from wrong source uid"
+	tst_resm TFAIL "FAIL: child could setuid from wrong source uid"
 	exit 1
 fi
-echo "PASS: child couldn't setuid from wrong source uid"
+tst_resm TPASS "PASS: child couldn't setuid from wrong source uid"
 
 touch $LTPTMP/childexit
 
diff --git a/testcases/kernel/security/p9auth/p9unpriv.sh b/testcases/kernel/security/p9auth/p9unpriv.sh
index 077b8ac..894b3c4 100755
--- a/testcases/kernel/security/p9auth/p9unpriv.sh
+++ b/testcases/kernel/security/p9auth/p9unpriv.sh
@@ -27,7 +27,7 @@ echo ltptmp is $LTPTMP
 
 myuid=`id -u`
 if [ "$myuid" -eq 0 ]; then
-	echo "Unprivileged child was started as root!"
+	tst_resm TBROK "Unprivileged child was started as root!"
 	exit 1
 fi
 
-- 
1.6.1.1


------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
_______________________________________________
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 1/1] say FAIL not PASS when we failed
  2010-01-05 15:30       ` Serge E. Hallyn
@ 2010-01-05 16:45         ` Garrett Cooper
  2010-01-05 17:33           ` Serge E. Hallyn
  0 siblings, 1 reply; 10+ messages in thread
From: Garrett Cooper @ 2010-01-05 16:45 UTC (permalink / raw)
  To: Serge E. Hallyn; +Cc: LTP list

Sent from my iPhone

On Jan 5, 2010, at 8:30 AM, "Serge E. Hallyn" <serue@us.ibm.com> wrote:

> Quoting Garrett Cooper (yanegomi@gmail.com):
>> On Jan 4, 2010, at 3:36 PM, "Serge E. Hallyn" <serue@us.ibm.com>  
>> wrote:
>>
>>> Quoting Garrett Cooper (yanegomi@gmail.com):
>>>> On Jan 4, 2010, at 9:16 AM, "Serge E. Hallyn" <serue@us.ibm.com>
>>>> wrote:
>>>>
>>>>> Signed-off-by: Serge E. Hallyn <serue@us.ibm.com>
>>>>> ---
>>>>> testcases/kernel/security/p9auth/p9priv.sh |    2 +-
>>>>> 1 files changed, 1 insertions(+), 1 deletions(-)
>>>>>
>>>>> diff --git a/testcases/kernel/security/p9auth/p9priv.sh
>>>>> b/testcases/kernel/security/p9auth/p9priv.sh
>>>>> index ad2eead..c1a14d0 100755
>>>>> --- a/testcases/kernel/security/p9auth/p9priv.sh
>>>>> +++ b/testcases/kernel/security/p9auth/p9priv.sh
>>>>> @@ -101,7 +101,7 @@ while [ ! -f $LTPTMP/d/childready ]; do :;  
>>>>> done
>>>>> touch $LTPTMP/childgo
>>>>> while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ]; do
>>>>> :; done;
>>>>> if [ -f $LTPTMP/d/childpass ]; then
>>>>> -    echo "PASS: child could setuid from wrong source uid"
>>>>> +    echo "FAIL: child could setuid from wrong source uid"
>>>>> exit 1
>>>>> fi
>>>>> echo "PASS: child couldn't setuid from wrong source uid"
>>>>> -- 
>>>>> 1.6.1.1
>>>>
>>>> Is there a reason why this isn't using tst_resm?
>>>
>>> No good reason
>>
>> Could this be converted then :)?
>
> This appears to work.
>
> thanks,
> -serge
>
> From 05713db9e0db910fa2fdfa85c452f0be8d820e8c Mon Sep 17 00:00:00 2001
> From: Serge E. Hallyn <serue@us.ibm.com>
> Date: Tue, 5 Jan 2010 10:30:11 -0500
> Subject: [PATCH 1/1] p9auth: use tst_resm
>
> Signed-off-by: Serge E. Hallyn <serue@us.ibm.com>
> ---
> testcases/kernel/security/p9auth/p9priv.sh   |   25 +++++++++++++++ 
> +---------
> testcases/kernel/security/p9auth/p9unpriv.sh |    2 +-
> 2 files changed, 17 insertions(+), 10 deletions(-)
>
> diff --git a/testcases/kernel/security/p9auth/p9priv.sh b/testcases/ 
> kernel/security/p9auth/p9priv.sh
> index c1a14d0..0f3ea7e 100755
> --- a/testcases/kernel/security/p9auth/p9priv.sh
> +++ b/testcases/kernel/security/p9auth/p9priv.sh
> @@ -19,7 +19,12 @@
> ##  
>     
>     
>                                                                       
> ##
> ### 
> ### 
> ### 
> ### 
> ####################################################################
>
> -LTPTMP=/tmp/p9auth_ltp
> +export LTPTMP=/tmp/p9auth_ltp
> +export TST_TOTAL=3
> +export TCID="p9auth"
> +
> +export TST_COUNT=1
> +
> rm -rf $LTPTMP
> mkdir $LTPTMP
> chmod 755 $LTPTMP
> @@ -37,14 +42,14 @@ cleanup() {
> }
>
> if [ `id -u` -ne 0 ]; then
> -    echo "Must start p9auth tests as root"
> +    tst_resm TBROK "Must start p9auth tests as root"
>    exit 1
> fi
>
> ltpuid=`grep ltp /etc/passwd | head -1 | awk -F: '{ print $3 '}`
> ret=$?
> if [ $? -ne 0 ]; then
> -    echo "Failed to find ltp userid"
> +    tst_resm TCONF "Failed to find ltp userid"
>    exit 1
> fi
>
> @@ -57,12 +62,13 @@ while [ ! -f $LTPTMP/d/childready ]; do :; done
> touch $LTPTMP/childgo
> while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ];  
> do :; done;
> if [ -f $LTPTMP/d/childpass ]; then
> -    echo "FAIL: child could setuid with bad hash"
> +    tst_resm TFAIL "FAIL: child could setuid with bad hash"
>    exit 1
> fi
> -echo "PASS: child couldn't setuid with bad hash"
> +tst_resm TPASS "PASS: child couldn't setuid with bad hash"
>
> # TEST 2: ltp setuids to 0 with valid hash
> +export TST_COUNT=2
>
> # create the hash.  randstr doesn't have to be int, but it's ok
> cleanup
> @@ -80,12 +86,13 @@ while [ ! -f $LTPTMP/d/childready ]; do :; done
> touch $LTPTMP/childgo
> while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ];  
> do :; done;
> if [ -f $LTPTMP/d/childfail ]; then
> -    echo "FAIL: child couldn't setuid with good hash"
> +    tst_resm TFAIL "FAIL: child couldn't setuid with good hash"
>    exit 1
> fi
> -echo "PASS: child could setuid with good hash"
> +tst_resm TPASS "PASS: child could setuid with good hash"
>
> # TEST 3: 0 setuids to 0 with hash valid for ltp user
> +export TST_COUNT=3
> cleanup
> randstr=$RANDOM
> txt="0@0"
> @@ -101,10 +108,10 @@ while [ ! -f $LTPTMP/d/childready ]; do :; done
> touch $LTPTMP/childgo
> while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ];  
> do :; done;
> if [ -f $LTPTMP/d/childpass ]; then
> -    echo "FAIL: child could setuid from wrong source uid"
> +    tst_resm TFAIL "FAIL: child could setuid from wrong source uid"
>    exit 1
> fi
> -echo "PASS: child couldn't setuid from wrong source uid"
> +tst_resm TPASS "PASS: child couldn't setuid from wrong source uid"
>
> touch $LTPTMP/childexit
>
> diff --git a/testcases/kernel/security/p9auth/p9unpriv.sh b/ 
> testcases/kernel/security/p9auth/p9unpriv.sh
> index 077b8ac..894b3c4 100755
> --- a/testcases/kernel/security/p9auth/p9unpriv.sh
> +++ b/testcases/kernel/security/p9auth/p9unpriv.sh
> @@ -27,7 +27,7 @@ echo ltptmp is $LTPTMP
>
> myuid=`id -u`
> if [ "$myuid" -eq 0 ]; then
> -    echo "Unprivileged child was started as root!"
> +    tst_resm TBROK "Unprivileged child was started as root!"
>    exit 1
> fi
>
> -- 
> 1.6.1.1

The patch is very close. /tmp -> TMPDIR=${TMPDIR:-/tmp} will do the  
trick.
Also, eith the new changes PASS: / FAIL: shouldn't be required because  
the result is inline with the printout.
Thanks!
-Garrett

------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-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] [PATCH 1/1] say FAIL not PASS when we failed
  2010-01-05 16:45         ` Garrett Cooper
@ 2010-01-05 17:33           ` Serge E. Hallyn
  2010-01-05 17:46             ` Garrett Cooper
  0 siblings, 1 reply; 10+ messages in thread
From: Serge E. Hallyn @ 2010-01-05 17:33 UTC (permalink / raw)
  To: Garrett Cooper; +Cc: LTP list

Quoting Garrett Cooper (yanegomi@gmail.com):
> Sent from my iPhone
> 
> On Jan 5, 2010, at 8:30 AM, "Serge E. Hallyn" <serue@us.ibm.com> wrote:
> 
> >Quoting Garrett Cooper (yanegomi@gmail.com):
> >>On Jan 4, 2010, at 3:36 PM, "Serge E. Hallyn" <serue@us.ibm.com>
> >>wrote:
> >>
> >>>Quoting Garrett Cooper (yanegomi@gmail.com):
> >>>>On Jan 4, 2010, at 9:16 AM, "Serge E. Hallyn" <serue@us.ibm.com>
> >>>>wrote:
> >>>>
> >>>>>Signed-off-by: Serge E. Hallyn <serue@us.ibm.com>
> >>>>>---
> >>>>>testcases/kernel/security/p9auth/p9priv.sh |    2 +-
> >>>>>1 files changed, 1 insertions(+), 1 deletions(-)
> >>>>>
> >>>>>diff --git a/testcases/kernel/security/p9auth/p9priv.sh
> >>>>>b/testcases/kernel/security/p9auth/p9priv.sh
> >>>>>index ad2eead..c1a14d0 100755
> >>>>>--- a/testcases/kernel/security/p9auth/p9priv.sh
> >>>>>+++ b/testcases/kernel/security/p9auth/p9priv.sh
> >>>>>@@ -101,7 +101,7 @@ while [ ! -f $LTPTMP/d/childready ];
> >>>>>do :; done
> >>>>>touch $LTPTMP/childgo
> >>>>>while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ]; do
> >>>>>:; done;
> >>>>>if [ -f $LTPTMP/d/childpass ]; then
> >>>>>-    echo "PASS: child could setuid from wrong source uid"
> >>>>>+    echo "FAIL: child could setuid from wrong source uid"
> >>>>>exit 1
> >>>>>fi
> >>>>>echo "PASS: child couldn't setuid from wrong source uid"
> >>>>>-- 
> >>>>>1.6.1.1
> >>>>
> >>>>Is there a reason why this isn't using tst_resm?
> >>>
> >>>No good reason
> >>
> >>Could this be converted then :)?
> >
> >This appears to work.
> >
> >thanks,
> >-serge
> >
> >From 05713db9e0db910fa2fdfa85c452f0be8d820e8c Mon Sep 17 00:00:00 2001
> >From: Serge E. Hallyn <serue@us.ibm.com>
> >Date: Tue, 5 Jan 2010 10:30:11 -0500
> >Subject: [PATCH 1/1] p9auth: use tst_resm
> >
> >Signed-off-by: Serge E. Hallyn <serue@us.ibm.com>
> >---
> >testcases/kernel/security/p9auth/p9priv.sh   |   25
> >++++++++++++++++---------
> >testcases/kernel/security/p9auth/p9unpriv.sh |    2 +-
> >2 files changed, 17 insertions(+), 10 deletions(-)
> >
> >diff --git a/testcases/kernel/security/p9auth/p9priv.sh
> >b/testcases/kernel/security/p9auth/p9priv.sh
> >index c1a14d0..0f3ea7e 100755
> >--- a/testcases/kernel/security/p9auth/p9priv.sh
> >+++ b/testcases/kernel/security/p9auth/p9priv.sh
> >@@ -19,7 +19,12 @@
> >##
> >##
> >############
> >####################################################################
> >
> >-LTPTMP=/tmp/p9auth_ltp
> >+export LTPTMP=/tmp/p9auth_ltp
> >+export TST_TOTAL=3
> >+export TCID="p9auth"
> >+
> >+export TST_COUNT=1
> >+
> >rm -rf $LTPTMP
> >mkdir $LTPTMP
> >chmod 755 $LTPTMP
> >@@ -37,14 +42,14 @@ cleanup() {
> >}
> >
> >if [ `id -u` -ne 0 ]; then
> >-    echo "Must start p9auth tests as root"
> >+    tst_resm TBROK "Must start p9auth tests as root"
> >   exit 1
> >fi
> >
> >ltpuid=`grep ltp /etc/passwd | head -1 | awk -F: '{ print $3 '}`
> >ret=$?
> >if [ $? -ne 0 ]; then
> >-    echo "Failed to find ltp userid"
> >+    tst_resm TCONF "Failed to find ltp userid"
> >   exit 1
> >fi
> >
> >@@ -57,12 +62,13 @@ while [ ! -f $LTPTMP/d/childready ]; do :; done
> >touch $LTPTMP/childgo
> >while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ]; do
> >:; done;
> >if [ -f $LTPTMP/d/childpass ]; then
> >-    echo "FAIL: child could setuid with bad hash"
> >+    tst_resm TFAIL "FAIL: child could setuid with bad hash"
> >   exit 1
> >fi
> >-echo "PASS: child couldn't setuid with bad hash"
> >+tst_resm TPASS "PASS: child couldn't setuid with bad hash"
> >
> ># TEST 2: ltp setuids to 0 with valid hash
> >+export TST_COUNT=2
> >
> ># create the hash.  randstr doesn't have to be int, but it's ok
> >cleanup
> >@@ -80,12 +86,13 @@ while [ ! -f $LTPTMP/d/childready ]; do :; done
> >touch $LTPTMP/childgo
> >while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ]; do
> >:; done;
> >if [ -f $LTPTMP/d/childfail ]; then
> >-    echo "FAIL: child couldn't setuid with good hash"
> >+    tst_resm TFAIL "FAIL: child couldn't setuid with good hash"
> >   exit 1
> >fi
> >-echo "PASS: child could setuid with good hash"
> >+tst_resm TPASS "PASS: child could setuid with good hash"
> >
> ># TEST 3: 0 setuids to 0 with hash valid for ltp user
> >+export TST_COUNT=3
> >cleanup
> >randstr=$RANDOM
> >txt="0@0"
> >@@ -101,10 +108,10 @@ while [ ! -f $LTPTMP/d/childready ]; do :; done
> >touch $LTPTMP/childgo
> >while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ]; do
> >:; done;
> >if [ -f $LTPTMP/d/childpass ]; then
> >-    echo "FAIL: child could setuid from wrong source uid"
> >+    tst_resm TFAIL "FAIL: child could setuid from wrong source uid"
> >   exit 1
> >fi
> >-echo "PASS: child couldn't setuid from wrong source uid"
> >+tst_resm TPASS "PASS: child couldn't setuid from wrong source uid"
> >
> >touch $LTPTMP/childexit
> >
> >diff --git a/testcases/kernel/security/p9auth/p9unpriv.sh b/
> >testcases/kernel/security/p9auth/p9unpriv.sh
> >index 077b8ac..894b3c4 100755
> >--- a/testcases/kernel/security/p9auth/p9unpriv.sh
> >+++ b/testcases/kernel/security/p9auth/p9unpriv.sh
> >@@ -27,7 +27,7 @@ echo ltptmp is $LTPTMP
> >
> >myuid=`id -u`
> >if [ "$myuid" -eq 0 ]; then
> >-    echo "Unprivileged child was started as root!"
> >+    tst_resm TBROK "Unprivileged child was started as root!"
> >   exit 1
> >fi
> >
> >-- 
> >1.6.1.1
> 
> The patch is very close. /tmp -> TMPDIR=${TMPDIR:-/tmp} will do the
> trick.
> Also, eith the new changes PASS: / FAIL: shouldn't be required
> because the result is inline with the printout.
> Thanks!
> -Garrett

New version.  (Hope I understood what you meant with tmpdir
correctly - and you don't mind me using a subdir of it)

thanks,
-serge

From 85401ac7279276eb46852ba828dc9f0ef2d62873 Mon Sep 17 00:00:00 2001
From: Serge E. Hallyn <serue@us.ibm.com>
Date: Tue, 5 Jan 2010 10:30:11 -0500
Subject: [PATCH 1/1] p9auth: use tst_resm

Changelog:
	Jan 5: Use ltp's TMPDIR, and don't print redundant 'PASS/FAIL'

Signed-off-by: Serge E. Hallyn <serue@us.ibm.com>
---
 testcases/kernel/security/p9auth/p9priv.sh   |   26 +++++++++++++++++---------
 testcases/kernel/security/p9auth/p9unpriv.sh |    5 +++--
 2 files changed, 20 insertions(+), 11 deletions(-)

diff --git a/testcases/kernel/security/p9auth/p9priv.sh b/testcases/kernel/security/p9auth/p9priv.sh
index c1a14d0..6738600 100755
--- a/testcases/kernel/security/p9auth/p9priv.sh
+++ b/testcases/kernel/security/p9auth/p9priv.sh
@@ -19,7 +19,13 @@
 ##                                                                            ##
 ################################################################################
 
-LTPTMP=/tmp/p9auth_ltp
+export TMPDIR=${TMPDIR:-/tmp}
+export LTPTMP=${TMPDIR}/p9auth_ltp
+export TST_TOTAL=3
+export TCID="p9auth"
+
+export TST_COUNT=1
+
 rm -rf $LTPTMP
 mkdir $LTPTMP
 chmod 755 $LTPTMP
@@ -37,14 +43,14 @@ cleanup() {
 }
 
 if [ `id -u` -ne 0 ]; then
-	echo "Must start p9auth tests as root"
+	tst_resm TBROK "Must start p9auth tests as root"
 	exit 1
 fi
 
 ltpuid=`grep ltp /etc/passwd | head -1 | awk -F: '{ print $3 '}`
 ret=$?
 if [ $? -ne 0 ]; then
-	echo "Failed to find ltp userid"
+	tst_resm TCONF "Failed to find ltp userid"
 	exit 1
 fi
 
@@ -57,12 +63,13 @@ while [ ! -f $LTPTMP/d/childready ]; do :; done
 touch $LTPTMP/childgo
 while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ]; do :; done;
 if [ -f $LTPTMP/d/childpass ]; then
-	echo "FAIL: child could setuid with bad hash"
+	tst_resm TFAIL "child could setuid with bad hash"
 	exit 1
 fi
-echo "PASS: child couldn't setuid with bad hash"
+tst_resm TPASS "child couldn't setuid with bad hash"
 
 # TEST 2: ltp setuids to 0 with valid hash
+export TST_COUNT=2
 
 # create the hash.  randstr doesn't have to be int, but it's ok
 cleanup
@@ -80,12 +87,13 @@ while [ ! -f $LTPTMP/d/childready ]; do :; done
 touch $LTPTMP/childgo
 while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ]; do :; done;
 if [ -f $LTPTMP/d/childfail ]; then
-	echo "FAIL: child couldn't setuid with good hash"
+	tst_resm TFAIL "child couldn't setuid with good hash"
 	exit 1
 fi
-echo "PASS: child could setuid with good hash"
+tst_resm TPASS "child could setuid with good hash"
 
 # TEST 3: 0 setuids to 0 with hash valid for ltp user
+export TST_COUNT=3
 cleanup
 randstr=$RANDOM
 txt="0@0"
@@ -101,10 +109,10 @@ while [ ! -f $LTPTMP/d/childready ]; do :; done
 touch $LTPTMP/childgo
 while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ]; do :; done;
 if [ -f $LTPTMP/d/childpass ]; then
-	echo "FAIL: child could setuid from wrong source uid"
+	tst_resm TFAIL "child could setuid from wrong source uid"
 	exit 1
 fi
-echo "PASS: child couldn't setuid from wrong source uid"
+tst_resm TPASS "child couldn't setuid from wrong source uid"
 
 touch $LTPTMP/childexit
 
diff --git a/testcases/kernel/security/p9auth/p9unpriv.sh b/testcases/kernel/security/p9auth/p9unpriv.sh
index 077b8ac..d42ee8e 100755
--- a/testcases/kernel/security/p9auth/p9unpriv.sh
+++ b/testcases/kernel/security/p9auth/p9unpriv.sh
@@ -19,7 +19,8 @@
 ##                                                                            ##
 ################################################################################
 
-LTPTMP=/tmp/p9auth_ltp
+export TMPDIR=${TMPDIR:-/tmp}
+export LTPTMP=${TMPDIR}/p9auth_ltp
 
 TOUCH=`which touch`
 ID=`which id`
@@ -27,7 +28,7 @@ echo ltptmp is $LTPTMP
 
 myuid=`id -u`
 if [ "$myuid" -eq 0 ]; then
-	echo "Unprivileged child was started as root!"
+	tst_resm TBROK "Unprivileged child was started as root!"
 	exit 1
 fi
 
-- 
1.6.1.1


------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
_______________________________________________
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 1/1] say FAIL not PASS when we failed
  2010-01-05 17:33           ` Serge E. Hallyn
@ 2010-01-05 17:46             ` Garrett Cooper
  2010-01-06  2:53               ` Garrett Cooper
  0 siblings, 1 reply; 10+ messages in thread
From: Garrett Cooper @ 2010-01-05 17:46 UTC (permalink / raw)
  To: Serge E. Hallyn; +Cc: LTP list

Sent from my iPhone

On Jan 5, 2010, at 10:33 AM, "Serge E. Hallyn" <serue@us.ibm.com> wrote:

> Quoting Garrett Cooper (yanegomi@gmail.com):
>> Sent from my iPhone
>>
>> On Jan 5, 2010, at 8:30 AM, "Serge E. Hallyn" <serue@us.ibm.com>  
>> wrote:
>>
>>> Quoting Garrett Cooper (yanegomi@gmail.com):
>>>> On Jan 4, 2010, at 3:36 PM, "Serge E. Hallyn" <serue@us.ibm.com>
>>>> wrote:
>>>>
>>>>> Quoting Garrett Cooper (yanegomi@gmail.com):
>>>>>> On Jan 4, 2010, at 9:16 AM, "Serge E. Hallyn" <serue@us.ibm.com>
>>>>>> wrote:
>>>>>>
>>>>>>> Signed-off-by: Serge E. Hallyn <serue@us.ibm.com>
>>>>>>> ---
>>>>>>> testcases/kernel/security/p9auth/p9priv.sh |    2 +-
>>>>>>> 1 files changed, 1 insertions(+), 1 deletions(-)
>>>>>>>
>>>>>>> diff --git a/testcases/kernel/security/p9auth/p9priv.sh
>>>>>>> b/testcases/kernel/security/p9auth/p9priv.sh
>>>>>>> index ad2eead..c1a14d0 100755
>>>>>>> --- a/testcases/kernel/security/p9auth/p9priv.sh
>>>>>>> +++ b/testcases/kernel/security/p9auth/p9priv.sh
>>>>>>> @@ -101,7 +101,7 @@ while [ ! -f $LTPTMP/d/childready ];
>>>>>>> do :; done
>>>>>>> touch $LTPTMP/childgo
>>>>>>> while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/ 
>>>>>>> childpass ]; do
>>>>>>> :; done;
>>>>>>> if [ -f $LTPTMP/d/childpass ]; then
>>>>>>> -    echo "PASS: child could setuid from wrong source uid"
>>>>>>> +    echo "FAIL: child could setuid from wrong source uid"
>>>>>>> exit 1
>>>>>>> fi
>>>>>>> echo "PASS: child couldn't setuid from wrong source uid"
>>>>>>> -- 
>>>>>>> 1.6.1.1
>>>>>>
>>>>>> Is there a reason why this isn't using tst_resm?
>>>>>
>>>>> No good reason
>>>>
>>>> Could this be converted then :)?
>>>
>>> This appears to work.
>>>
>>> thanks,
>>> -serge
>>>
>>> From 05713db9e0db910fa2fdfa85c452f0be8d820e8c Mon Sep 17 00:00:00  
>>> 2001
>>> From: Serge E. Hallyn <serue@us.ibm.com>
>>> Date: Tue, 5 Jan 2010 10:30:11 -0500
>>> Subject: [PATCH 1/1] p9auth: use tst_resm
>>>
>>> Signed-off-by: Serge E. Hallyn <serue@us.ibm.com>
>>> ---
>>> testcases/kernel/security/p9auth/p9priv.sh   |   25
>>> ++++++++++++++++---------
>>> testcases/kernel/security/p9auth/p9unpriv.sh |    2 +-
>>> 2 files changed, 17 insertions(+), 10 deletions(-)
>>>
>>> diff --git a/testcases/kernel/security/p9auth/p9priv.sh
>>> b/testcases/kernel/security/p9auth/p9priv.sh
>>> index c1a14d0..0f3ea7e 100755
>>> --- a/testcases/kernel/security/p9auth/p9priv.sh
>>> +++ b/testcases/kernel/security/p9auth/p9priv.sh
>>> @@ -19,7 +19,12 @@
>>> ##
>>> ##
>>> ############
>>> ####################################################################
>>>
>>> -LTPTMP=/tmp/p9auth_ltp
>>> +export LTPTMP=/tmp/p9auth_ltp
>>> +export TST_TOTAL=3
>>> +export TCID="p9auth"
>>> +
>>> +export TST_COUNT=1
>>> +
>>> rm -rf $LTPTMP
>>> mkdir $LTPTMP
>>> chmod 755 $LTPTMP
>>> @@ -37,14 +42,14 @@ cleanup() {
>>> }
>>>
>>> if [ `id -u` -ne 0 ]; then
>>> -    echo "Must start p9auth tests as root"
>>> +    tst_resm TBROK "Must start p9auth tests as root"
>>>  exit 1
>>> fi
>>>
>>> ltpuid=`grep ltp /etc/passwd | head -1 | awk -F: '{ print $3 '}`
>>> ret=$?
>>> if [ $? -ne 0 ]; then
>>> -    echo "Failed to find ltp userid"
>>> +    tst_resm TCONF "Failed to find ltp userid"
>>>  exit 1
>>> fi
>>>
>>> @@ -57,12 +62,13 @@ while [ ! -f $LTPTMP/d/childready ]; do :; done
>>> touch $LTPTMP/childgo
>>> while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ]; do
>>> :; done;
>>> if [ -f $LTPTMP/d/childpass ]; then
>>> -    echo "FAIL: child could setuid with bad hash"
>>> +    tst_resm TFAIL "FAIL: child could setuid with bad hash"
>>>  exit 1
>>> fi
>>> -echo "PASS: child couldn't setuid with bad hash"
>>> +tst_resm TPASS "PASS: child couldn't setuid with bad hash"
>>>
>>> # TEST 2: ltp setuids to 0 with valid hash
>>> +export TST_COUNT=2
>>>
>>> # create the hash.  randstr doesn't have to be int, but it's ok
>>> cleanup
>>> @@ -80,12 +86,13 @@ while [ ! -f $LTPTMP/d/childready ]; do :; done
>>> touch $LTPTMP/childgo
>>> while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ]; do
>>> :; done;
>>> if [ -f $LTPTMP/d/childfail ]; then
>>> -    echo "FAIL: child couldn't setuid with good hash"
>>> +    tst_resm TFAIL "FAIL: child couldn't setuid with good hash"
>>>  exit 1
>>> fi
>>> -echo "PASS: child could setuid with good hash"
>>> +tst_resm TPASS "PASS: child could setuid with good hash"
>>>
>>> # TEST 3: 0 setuids to 0 with hash valid for ltp user
>>> +export TST_COUNT=3
>>> cleanup
>>> randstr=$RANDOM
>>> txt="0@0"
>>> @@ -101,10 +108,10 @@ while [ ! -f $LTPTMP/d/childready ]; do :;  
>>> done
>>> touch $LTPTMP/childgo
>>> while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ]; do
>>> :; done;
>>> if [ -f $LTPTMP/d/childpass ]; then
>>> -    echo "FAIL: child could setuid from wrong source uid"
>>> +    tst_resm TFAIL "FAIL: child could setuid from wrong source uid"
>>>  exit 1
>>> fi
>>> -echo "PASS: child couldn't setuid from wrong source uid"
>>> +tst_resm TPASS "PASS: child couldn't setuid from wrong source uid"
>>>
>>> touch $LTPTMP/childexit
>>>
>>> diff --git a/testcases/kernel/security/p9auth/p9unpriv.sh b/
>>> testcases/kernel/security/p9auth/p9unpriv.sh
>>> index 077b8ac..894b3c4 100755
>>> --- a/testcases/kernel/security/p9auth/p9unpriv.sh
>>> +++ b/testcases/kernel/security/p9auth/p9unpriv.sh
>>> @@ -27,7 +27,7 @@ echo ltptmp is $LTPTMP
>>>
>>> myuid=`id -u`
>>> if [ "$myuid" -eq 0 ]; then
>>> -    echo "Unprivileged child was started as root!"
>>> +    tst_resm TBROK "Unprivileged child was started as root!"
>>>  exit 1
>>> fi
>>>
>>> -- 
>>> 1.6.1.1
>>
>> The patch is very close. /tmp -> TMPDIR=${TMPDIR:-/tmp} will do the
>> trick.
>> Also, eith the new changes PASS: / FAIL: shouldn't be required
>> because the result is inline with the printout.
>> Thanks!
>> -Garrett
>
> New version.  (Hope I understood what you meant with tmpdir
> correctly - and you don't mind me using a subdir of it)
>
> thanks,
> -serge
>
> From 85401ac7279276eb46852ba828dc9f0ef2d62873 Mon Sep 17 00:00:00 2001
> From: Serge E. Hallyn <serue@us.ibm.com>
> Date: Tue, 5 Jan 2010 10:30:11 -0500
> Subject: [PATCH 1/1] p9auth: use tst_resm
>
> Changelog:
>    Jan 5: Use ltp's TMPDIR, and don't print redundant 'PASS/FAIL'
>
> Signed-off-by: Serge E. Hallyn <serue@us.ibm.com>
> ---
> testcases/kernel/security/p9auth/p9priv.sh   |   26 ++++++++++++++++ 
> +---------
> testcases/kernel/security/p9auth/p9unpriv.sh |    5 +++--
> 2 files changed, 20 insertions(+), 11 deletions(-)
>
> diff --git a/testcases/kernel/security/p9auth/p9priv.sh b/testcases/ 
> kernel/security/p9auth/p9priv.sh
> index c1a14d0..6738600 100755
> --- a/testcases/kernel/security/p9auth/p9priv.sh
> +++ b/testcases/kernel/security/p9auth/p9priv.sh
> @@ -19,7 +19,13 @@
> ##  
>     
>     
>                                                                       
> ##
> ### 
> ### 
> ### 
> ### 
> ####################################################################
>
> -LTPTMP=/tmp/p9auth_ltp
> +export TMPDIR=${TMPDIR:-/tmp}
> +export LTPTMP=${TMPDIR}/p9auth_ltp
> +export TST_TOTAL=3
> +export TCID="p9auth"
> +
> +export TST_COUNT=1
> +
> rm -rf $LTPTMP
> mkdir $LTPTMP
> chmod 755 $LTPTMP
> @@ -37,14 +43,14 @@ cleanup() {
> }
>
> if [ `id -u` -ne 0 ]; then
> -    echo "Must start p9auth tests as root"
> +    tst_resm TBROK "Must start p9auth tests as root"
>    exit 1
> fi
>
> ltpuid=`grep ltp /etc/passwd | head -1 | awk -F: '{ print $3 '}`
> ret=$?
> if [ $? -ne 0 ]; then
> -    echo "Failed to find ltp userid"
> +    tst_resm TCONF "Failed to find ltp userid"
>    exit 1
> fi
>
> @@ -57,12 +63,13 @@ while [ ! -f $LTPTMP/d/childready ]; do :; done
> touch $LTPTMP/childgo
> while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ];  
> do :; done;
> if [ -f $LTPTMP/d/childpass ]; then
> -    echo "FAIL: child could setuid with bad hash"
> +    tst_resm TFAIL "child could setuid with bad hash"
>    exit 1
> fi
> -echo "PASS: child couldn't setuid with bad hash"
> +tst_resm TPASS "child couldn't setuid with bad hash"
>
> # TEST 2: ltp setuids to 0 with valid hash
> +export TST_COUNT=2
>
> # create the hash.  randstr doesn't have to be int, but it's ok
> cleanup
> @@ -80,12 +87,13 @@ while [ ! -f $LTPTMP/d/childready ]; do :; done
> touch $LTPTMP/childgo
> while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ];  
> do :; done;
> if [ -f $LTPTMP/d/childfail ]; then
> -    echo "FAIL: child couldn't setuid with good hash"
> +    tst_resm TFAIL "child couldn't setuid with good hash"
>    exit 1
> fi
> -echo "PASS: child could setuid with good hash"
> +tst_resm TPASS "child could setuid with good hash"
>
> # TEST 3: 0 setuids to 0 with hash valid for ltp user
> +export TST_COUNT=3
> cleanup
> randstr=$RANDOM
> txt="0@0"
> @@ -101,10 +109,10 @@ while [ ! -f $LTPTMP/d/childready ]; do :; done
> touch $LTPTMP/childgo
> while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ];  
> do :; done;
> if [ -f $LTPTMP/d/childpass ]; then
> -    echo "FAIL: child could setuid from wrong source uid"
> +    tst_resm TFAIL "child could setuid from wrong source uid"
>    exit 1
> fi
> -echo "PASS: child couldn't setuid from wrong source uid"
> +tst_resm TPASS "child couldn't setuid from wrong source uid"
>
> touch $LTPTMP/childexit
>
> diff --git a/testcases/kernel/security/p9auth/p9unpriv.sh b/ 
> testcases/kernel/security/p9auth/p9unpriv.sh
> index 077b8ac..d42ee8e 100755
> --- a/testcases/kernel/security/p9auth/p9unpriv.sh
> +++ b/testcases/kernel/security/p9auth/p9unpriv.sh
> @@ -19,7 +19,8 @@
> ##  
>     
>     
>                                                                       
> ##
> ### 
> ### 
> ### 
> ### 
> ####################################################################
>
> -LTPTMP=/tmp/p9auth_ltp
> +export TMPDIR=${TMPDIR:-/tmp}
> +export LTPTMP=${TMPDIR}/p9auth_ltp
>
> TOUCH=`which touch`
> ID=`which id`
> @@ -27,7 +28,7 @@ echo ltptmp is $LTPTMP
>
> myuid=`id -u`
> if [ "$myuid" -eq 0 ]; then
> -    echo "Unprivileged child was started as root!"
> +    tst_resm TBROK "Unprivileged child was started as root!"
>    exit 1
> fi

Perfect -- I'll commit this once I get back home in a few hours!
Thanks,
-Garrett

------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-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] [PATCH 1/1] say FAIL not PASS when we failed
  2010-01-05 17:46             ` Garrett Cooper
@ 2010-01-06  2:53               ` Garrett Cooper
  2010-01-06  3:22                 ` Serge E. Hallyn
  0 siblings, 1 reply; 10+ messages in thread
From: Garrett Cooper @ 2010-01-06  2:53 UTC (permalink / raw)
  To: Serge E. Hallyn; +Cc: LTP list

On Tue, Jan 5, 2010 at 9:46 AM, Garrett Cooper <yanegomi@gmail.com> wrote:
> Sent from my iPhone
>
> On Jan 5, 2010, at 10:33 AM, "Serge E. Hallyn" <serue@us.ibm.com> wrote:
>
>> Quoting Garrett Cooper (yanegomi@gmail.com):
>>>
>>> Sent from my iPhone
>>>
>>> On Jan 5, 2010, at 8:30 AM, "Serge E. Hallyn" <serue@us.ibm.com> wrote:
>>>
>>>> Quoting Garrett Cooper (yanegomi@gmail.com):
>>>>>
>>>>> On Jan 4, 2010, at 3:36 PM, "Serge E. Hallyn" <serue@us.ibm.com>
>>>>> wrote:
>>>>>
>>>>>> Quoting Garrett Cooper (yanegomi@gmail.com):
>>>>>>>
>>>>>>> On Jan 4, 2010, at 9:16 AM, "Serge E. Hallyn" <serue@us.ibm.com>
>>>>>>> wrote:
>>>>>>>
>>>>>>>> Signed-off-by: Serge E. Hallyn <serue@us.ibm.com>
>>>>>>>> ---
>>>>>>>> testcases/kernel/security/p9auth/p9priv.sh |    2 +-
>>>>>>>> 1 files changed, 1 insertions(+), 1 deletions(-)
>>>>>>>>
>>>>>>>> diff --git a/testcases/kernel/security/p9auth/p9priv.sh
>>>>>>>> b/testcases/kernel/security/p9auth/p9priv.sh
>>>>>>>> index ad2eead..c1a14d0 100755
>>>>>>>> --- a/testcases/kernel/security/p9auth/p9priv.sh
>>>>>>>> +++ b/testcases/kernel/security/p9auth/p9priv.sh
>>>>>>>> @@ -101,7 +101,7 @@ while [ ! -f $LTPTMP/d/childready ];
>>>>>>>> do :; done
>>>>>>>> touch $LTPTMP/childgo
>>>>>>>> while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ]; do
>>>>>>>> :; done;
>>>>>>>> if [ -f $LTPTMP/d/childpass ]; then
>>>>>>>> -    echo "PASS: child could setuid from wrong source uid"
>>>>>>>> +    echo "FAIL: child could setuid from wrong source uid"
>>>>>>>> exit 1
>>>>>>>> fi
>>>>>>>> echo "PASS: child couldn't setuid from wrong source uid"
>>>>>>>> --
>>>>>>>> 1.6.1.1
>>>>>>>
>>>>>>> Is there a reason why this isn't using tst_resm?
>>>>>>
>>>>>> No good reason
>>>>>
>>>>> Could this be converted then :)?
>>>>
>>>> This appears to work.
>>>>
>>>> thanks,
>>>> -serge
>>>>
>>>> From 05713db9e0db910fa2fdfa85c452f0be8d820e8c Mon Sep 17 00:00:00 2001
>>>> From: Serge E. Hallyn <serue@us.ibm.com>
>>>> Date: Tue, 5 Jan 2010 10:30:11 -0500
>>>> Subject: [PATCH 1/1] p9auth: use tst_resm
>>>>
>>>> Signed-off-by: Serge E. Hallyn <serue@us.ibm.com>
>>>> ---
>>>> testcases/kernel/security/p9auth/p9priv.sh   |   25
>>>> ++++++++++++++++---------
>>>> testcases/kernel/security/p9auth/p9unpriv.sh |    2 +-
>>>> 2 files changed, 17 insertions(+), 10 deletions(-)
>>>>
>>>> diff --git a/testcases/kernel/security/p9auth/p9priv.sh
>>>> b/testcases/kernel/security/p9auth/p9priv.sh
>>>> index c1a14d0..0f3ea7e 100755
>>>> --- a/testcases/kernel/security/p9auth/p9priv.sh
>>>> +++ b/testcases/kernel/security/p9auth/p9priv.sh
>>>> @@ -19,7 +19,12 @@
>>>> ##
>>>> ##
>>>> ############
>>>> ####################################################################
>>>>
>>>> -LTPTMP=/tmp/p9auth_ltp
>>>> +export LTPTMP=/tmp/p9auth_ltp
>>>> +export TST_TOTAL=3
>>>> +export TCID="p9auth"
>>>> +
>>>> +export TST_COUNT=1
>>>> +
>>>> rm -rf $LTPTMP
>>>> mkdir $LTPTMP
>>>> chmod 755 $LTPTMP
>>>> @@ -37,14 +42,14 @@ cleanup() {
>>>> }
>>>>
>>>> if [ `id -u` -ne 0 ]; then
>>>> -    echo "Must start p9auth tests as root"
>>>> +    tst_resm TBROK "Must start p9auth tests as root"
>>>>  exit 1
>>>> fi
>>>>
>>>> ltpuid=`grep ltp /etc/passwd | head -1 | awk -F: '{ print $3 '}`
>>>> ret=$?
>>>> if [ $? -ne 0 ]; then
>>>> -    echo "Failed to find ltp userid"
>>>> +    tst_resm TCONF "Failed to find ltp userid"
>>>>  exit 1
>>>> fi
>>>>
>>>> @@ -57,12 +62,13 @@ while [ ! -f $LTPTMP/d/childready ]; do :; done
>>>> touch $LTPTMP/childgo
>>>> while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ]; do
>>>> :; done;
>>>> if [ -f $LTPTMP/d/childpass ]; then
>>>> -    echo "FAIL: child could setuid with bad hash"
>>>> +    tst_resm TFAIL "FAIL: child could setuid with bad hash"
>>>>  exit 1
>>>> fi
>>>> -echo "PASS: child couldn't setuid with bad hash"
>>>> +tst_resm TPASS "PASS: child couldn't setuid with bad hash"
>>>>
>>>> # TEST 2: ltp setuids to 0 with valid hash
>>>> +export TST_COUNT=2
>>>>
>>>> # create the hash.  randstr doesn't have to be int, but it's ok
>>>> cleanup
>>>> @@ -80,12 +86,13 @@ while [ ! -f $LTPTMP/d/childready ]; do :; done
>>>> touch $LTPTMP/childgo
>>>> while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ]; do
>>>> :; done;
>>>> if [ -f $LTPTMP/d/childfail ]; then
>>>> -    echo "FAIL: child couldn't setuid with good hash"
>>>> +    tst_resm TFAIL "FAIL: child couldn't setuid with good hash"
>>>>  exit 1
>>>> fi
>>>> -echo "PASS: child could setuid with good hash"
>>>> +tst_resm TPASS "PASS: child could setuid with good hash"
>>>>
>>>> # TEST 3: 0 setuids to 0 with hash valid for ltp user
>>>> +export TST_COUNT=3
>>>> cleanup
>>>> randstr=$RANDOM
>>>> txt="0@0"
>>>> @@ -101,10 +108,10 @@ while [ ! -f $LTPTMP/d/childready ]; do :; done
>>>> touch $LTPTMP/childgo
>>>> while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ]; do
>>>> :; done;
>>>> if [ -f $LTPTMP/d/childpass ]; then
>>>> -    echo "FAIL: child could setuid from wrong source uid"
>>>> +    tst_resm TFAIL "FAIL: child could setuid from wrong source uid"
>>>>  exit 1
>>>> fi
>>>> -echo "PASS: child couldn't setuid from wrong source uid"
>>>> +tst_resm TPASS "PASS: child couldn't setuid from wrong source uid"
>>>>
>>>> touch $LTPTMP/childexit
>>>>
>>>> diff --git a/testcases/kernel/security/p9auth/p9unpriv.sh b/
>>>> testcases/kernel/security/p9auth/p9unpriv.sh
>>>> index 077b8ac..894b3c4 100755
>>>> --- a/testcases/kernel/security/p9auth/p9unpriv.sh
>>>> +++ b/testcases/kernel/security/p9auth/p9unpriv.sh
>>>> @@ -27,7 +27,7 @@ echo ltptmp is $LTPTMP
>>>>
>>>> myuid=`id -u`
>>>> if [ "$myuid" -eq 0 ]; then
>>>> -    echo "Unprivileged child was started as root!"
>>>> +    tst_resm TBROK "Unprivileged child was started as root!"
>>>>  exit 1
>>>> fi
>>>>
>>>> --
>>>> 1.6.1.1
>>>
>>> The patch is very close. /tmp -> TMPDIR=${TMPDIR:-/tmp} will do the
>>> trick.
>>> Also, eith the new changes PASS: / FAIL: shouldn't be required
>>> because the result is inline with the printout.
>>> Thanks!
>>> -Garrett
>>
>> New version.  (Hope I understood what you meant with tmpdir
>> correctly - and you don't mind me using a subdir of it)
>>
>> thanks,
>> -serge
>>
>> From 85401ac7279276eb46852ba828dc9f0ef2d62873 Mon Sep 17 00:00:00 2001
>> From: Serge E. Hallyn <serue@us.ibm.com>
>> Date: Tue, 5 Jan 2010 10:30:11 -0500
>> Subject: [PATCH 1/1] p9auth: use tst_resm
>>
>> Changelog:
>>   Jan 5: Use ltp's TMPDIR, and don't print redundant 'PASS/FAIL'
>>
>> Signed-off-by: Serge E. Hallyn <serue@us.ibm.com>
>> ---
>> testcases/kernel/security/p9auth/p9priv.sh   |   26
>> +++++++++++++++++---------
>> testcases/kernel/security/p9auth/p9unpriv.sh |    5 +++--
>> 2 files changed, 20 insertions(+), 11 deletions(-)
>>
>> diff --git a/testcases/kernel/security/p9auth/p9priv.sh
>> b/testcases/kernel/security/p9auth/p9priv.sh
>> index c1a14d0..6738600 100755
>> --- a/testcases/kernel/security/p9auth/p9priv.sh
>> +++ b/testcases/kernel/security/p9auth/p9priv.sh
>> @@ -19,7 +19,13 @@
>> ##
>> ##
>>
>> ################################################################################
>>
>> -LTPTMP=/tmp/p9auth_ltp
>> +export TMPDIR=${TMPDIR:-/tmp}
>> +export LTPTMP=${TMPDIR}/p9auth_ltp
>> +export TST_TOTAL=3
>> +export TCID="p9auth"
>> +
>> +export TST_COUNT=1
>> +
>> rm -rf $LTPTMP
>> mkdir $LTPTMP
>> chmod 755 $LTPTMP
>> @@ -37,14 +43,14 @@ cleanup() {
>> }
>>
>> if [ `id -u` -ne 0 ]; then
>> -    echo "Must start p9auth tests as root"
>> +    tst_resm TBROK "Must start p9auth tests as root"
>>   exit 1
>> fi
>>
>> ltpuid=`grep ltp /etc/passwd | head -1 | awk -F: '{ print $3 '}`
>> ret=$?
>> if [ $? -ne 0 ]; then
>> -    echo "Failed to find ltp userid"
>> +    tst_resm TCONF "Failed to find ltp userid"
>>   exit 1
>> fi
>>
>> @@ -57,12 +63,13 @@ while [ ! -f $LTPTMP/d/childready ]; do :; done
>> touch $LTPTMP/childgo
>> while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ]; do :;
>> done;
>> if [ -f $LTPTMP/d/childpass ]; then
>> -    echo "FAIL: child could setuid with bad hash"
>> +    tst_resm TFAIL "child could setuid with bad hash"
>>   exit 1
>> fi
>> -echo "PASS: child couldn't setuid with bad hash"
>> +tst_resm TPASS "child couldn't setuid with bad hash"
>>
>> # TEST 2: ltp setuids to 0 with valid hash
>> +export TST_COUNT=2
>>
>> # create the hash.  randstr doesn't have to be int, but it's ok
>> cleanup
>> @@ -80,12 +87,13 @@ while [ ! -f $LTPTMP/d/childready ]; do :; done
>> touch $LTPTMP/childgo
>> while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ]; do :;
>> done;
>> if [ -f $LTPTMP/d/childfail ]; then
>> -    echo "FAIL: child couldn't setuid with good hash"
>> +    tst_resm TFAIL "child couldn't setuid with good hash"
>>   exit 1
>> fi
>> -echo "PASS: child could setuid with good hash"
>> +tst_resm TPASS "child could setuid with good hash"
>>
>> # TEST 3: 0 setuids to 0 with hash valid for ltp user
>> +export TST_COUNT=3
>> cleanup
>> randstr=$RANDOM
>> txt="0@0"
>> @@ -101,10 +109,10 @@ while [ ! -f $LTPTMP/d/childready ]; do :; done
>> touch $LTPTMP/childgo
>> while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ]; do :;
>> done;
>> if [ -f $LTPTMP/d/childpass ]; then
>> -    echo "FAIL: child could setuid from wrong source uid"
>> +    tst_resm TFAIL "child could setuid from wrong source uid"
>>   exit 1
>> fi
>> -echo "PASS: child couldn't setuid from wrong source uid"
>> +tst_resm TPASS "child couldn't setuid from wrong source uid"
>>
>> touch $LTPTMP/childexit
>>
>> diff --git a/testcases/kernel/security/p9auth/p9unpriv.sh
>> b/testcases/kernel/security/p9auth/p9unpriv.sh
>> index 077b8ac..d42ee8e 100755
>> --- a/testcases/kernel/security/p9auth/p9unpriv.sh
>> +++ b/testcases/kernel/security/p9auth/p9unpriv.sh
>> @@ -19,7 +19,8 @@
>> ##
>> ##
>>
>> ################################################################################
>>
>> -LTPTMP=/tmp/p9auth_ltp
>> +export TMPDIR=${TMPDIR:-/tmp}
>> +export LTPTMP=${TMPDIR}/p9auth_ltp
>>
>> TOUCH=`which touch`
>> ID=`which id`
>> @@ -27,7 +28,7 @@ echo ltptmp is $LTPTMP
>>
>> myuid=`id -u`
>> if [ "$myuid" -eq 0 ]; then
>> -    echo "Unprivileged child was started as root!"
>> +    tst_resm TBROK "Unprivileged child was started as root!"
>>   exit 1
>> fi
>
> Perfect -- I'll commit this once I get back home in a few hours!
> Thanks,

Ok, so before I commit I just want to make sure that this makes sense with you:

The differences are:
1. The id -?r?u use.
2. The while [ ! ... -a ... ] vs until [ ... -o ... ] logic (is more
clear in my mind because it better describes the desired end-state)
3. Removing the which calls (because which doesn't exist on busybox
from what I've heard) and replacing them with non-absolute commands
(because it's the same thing...).

Thanks!
-Garrett

Index: testcases/kernel/security/p9auth/p9priv.sh
===================================================================
RCS file: /cvsroot/ltp/ltp/testcases/kernel/security/p9auth/p9priv.sh,v
retrieving revision 1.1
diff -u -r1.1 p9priv.sh
--- testcases/kernel/security/p9auth/p9priv.sh  21 Sep 2009 15:48:09
-0000     1.1
+++ testcases/kernel/security/p9auth/p9priv.sh  6 Jan 2010 02:50:09 -0000
@@ -19,32 +19,32 @@
 ##
        ##
 ################################################################################

-LTPTMP=/tmp/p9auth_ltp
+export TMPDIR=${TMPDIR:-/tmp}
+export LTPTMP=${TMPDIR}/p9auth_ltp
+export TST_TOTAL=3
+export TCID="p9auth"
+
+export TST_COUNT=1
+
 rm -rf $LTPTMP
 mkdir $LTPTMP
 chmod 755 $LTPTMP

 comms="$LTPTMP/childgo $LTPTMP/d/childready $LTPTMP/d/childfail
$LTPTMP/d/childpass $LTPTMP/childexit"

-RM=`which rm`
-MKDIR=`which mkdir`
-CHOWN=`which chown`
-
 cleanup() {
-       $RM -rf $LTPTMP/d $comms
-       $MKDIR -p $LTPTMP/d
-       $CHOWN -R ltp $LTPTMP/d
+       rm -rf $LTPTMP/d $comms
+       mkdir -p $LTPTMP/d
+       chown -R ltp $LTPTMP/d
 }

-if [ `id -u` -ne 0 ]; then
-       echo "Must start p9auth tests as root"
+if [ "$(id -ru)" -ne 0 ]; then
+       tst_resm TBROK "Must start p9auth tests as root"
        exit 1
 fi

-ltpuid=`grep ltp /etc/passwd | head -1 | awk -F: '{ print $3 '}`
-ret=$?
-if [ $? -ne 0 ]; then
-       echo "Failed to find ltp userid"
+if ! ltpuid=$(id -u ltp); then
+       tst_resm TCONF "Failed to find ltp userid"
        exit 1
 fi

@@ -55,12 +55,12 @@
 su ltp p9unpriv.sh &
 while [ ! -f $LTPTMP/d/childready ]; do :; done
 touch $LTPTMP/childgo
-while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ]; do :; done;
+until [ -f $LTPTMP/d/childfail -o -f $LTPTMP/d/childpass ]; do :; done
 if [ -f $LTPTMP/d/childpass ]; then
-       echo "FAIL: child could setuid with bad hash"
+       tst_resm TFAIL "child could setuid with bad hash"
        exit 1
 fi
-echo "PASS: child couldn't setuid with bad hash"
+tst_resm TPASS "child couldn't setuid with bad hash"

 # TEST 2: ltp setuids to 0 with valid hash

@@ -78,12 +78,12 @@
 su ltp p9unpriv.sh &
 while [ ! -f $LTPTMP/d/childready ]; do :; done
 touch $LTPTMP/childgo
-while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ]; do :; done;
+until [ -f $LTPTMP/d/childfail -o -f $LTPTMP/d/childpass ]; do :; done
 if [ -f $LTPTMP/d/childfail ]; then
-       echo "FAIL: child couldn't setuid with good hash"
+       tst_resm TFAIL "child couldn't setuid with good hash"
        exit 1
 fi
-echo "PASS: child could setuid with good hash"
+tst_resm TPASS "child could setuid with good hash"

 # TEST 3: 0 setuids to 0 with hash valid for ltp user
 cleanup
@@ -99,12 +99,12 @@
 su ltp p9unpriv.sh &
 while [ ! -f $LTPTMP/d/childready ]; do :; done
 touch $LTPTMP/childgo
-while [ ! -f $LTPTMP/d/childfail -a ! -f $LTPTMP/d/childpass ]; do :; done;
+until [ -f $LTPTMP/d/childfail -o -f $LTPTMP/d/childpass ]; do :; done;
 if [ -f $LTPTMP/d/childpass ]; then
-       echo "PASS: child could setuid from wrong source uid"
+       tst_resm TFAIL "child could setuid from wrong source uid"
        exit 1
 fi
-echo "PASS: child couldn't setuid from wrong source uid"
+tst_resm TPASS "child couldn't setuid from wrong source uid"

 touch $LTPTMP/childexit

------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-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] [PATCH 1/1] say FAIL not PASS when we failed
  2010-01-06  2:53               ` Garrett Cooper
@ 2010-01-06  3:22                 ` Serge E. Hallyn
  0 siblings, 0 replies; 10+ messages in thread
From: Serge E. Hallyn @ 2010-01-06  3:22 UTC (permalink / raw)
  To: Garrett Cooper; +Cc: LTP list

Quoting Garrett Cooper (yanegomi@gmail.com):
> Ok, so before I commit I just want to make sure that this makes sense with you:
> 
> The differences are:
> 1. The id -?r?u use.

Either one can be fooled, neither should be...

> 2. The while [ ! ... -a ... ] vs until [ ... -o ... ] logic (is more
> clear in my mind because it better describes the desired end-state)
> 3. Removing the which calls (because which doesn't exist on busybox
> from what I've heard) and replacing them with non-absolute commands
> (because it's the same thing...).

All look fine to me.

thanks,
-serge

------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-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:[~2010-01-06  3:23 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-04 17:16 [LTP] [PATCH 1/1] say FAIL not PASS when we failed Serge E. Hallyn
2010-01-04 22:59 ` Garrett Cooper
2010-01-04 23:36   ` Serge E. Hallyn
2010-01-05  2:12     ` Garrett Cooper
2010-01-05 15:30       ` Serge E. Hallyn
2010-01-05 16:45         ` Garrett Cooper
2010-01-05 17:33           ` Serge E. Hallyn
2010-01-05 17:46             ` Garrett Cooper
2010-01-06  2:53               ` Garrett Cooper
2010-01-06  3:22                 ` Serge E. Hallyn

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox