Hi,

I want to suggest a patch for #2 test of "mail_tests.sh".

The failure of #2 is as following:
------------
mail_tests::mail02    0  TINFO  :  Test #2: mail u...@bad-domain will result
in failure
mail_tests::mail02    0  TINFO  :  Test #2: to deliver the mail. Mailer
daemon should
mail_tests::mail02    0  TINFO  :  Test #2: report this failure.
mail_tests::mail02    2  TFAIL  :  Test #2: No new mail for root. Reason:
No mail for root
------------

I use RHEL5.4, RHEL4.8 systems and x86, x86_64, ia64 architectures.
"#2" test failed in all combinations.

At "#2" test, there is "No mail for root" in "tst_mail.res" file.
I want to add this condition to judgment for "tst_mail.res".

The other day, I made a question  whether #2 test failed or not 
in other systems. 
 -->http://www.mail-archive.com/[email protected]/msg10184.html
But I have received no reply yet. Therefore I don't know about other 
systems, and I made this revision to become effective for only RHEL 
systems.


Signed-off-by: Tomonori Mitani <[email protected]>

============
--- a/testcases/commands/mail/mail_tests.sh     2010-06-02
21:46:46.000000000 +0900
+++ b/testcases/commands/mail/mail_tests.sh     2010-06-09
15:33:19.000000000 +0900
@@ -140,14 +140,18 @@
 
 export TCID=mail_tests::mail02
 export TST_COUNT=2
-RC=0
 RC1=0
 RC2=0
+RC3=0
+RC4=0
 
 tst_resm TINFO "Test #2: mail u...@bad-domain will result in failure"
 tst_resm TINFO "Test #2: to deliver the mail. Mailer daemon should"
 tst_resm TINFO "Test #2: report this failure."
 
+tvar=${MACHTYPE%-*}
+tvar=${tvar#*-}
+
 # Don't use underscores in domain names (they're illegal)...
 mail -s "Test" r...@thisdomaindoesnotexist < $LTPTMP/tst_mail.in \
        > $LTPTMP/tst_mail.out 2>&1
@@ -190,9 +194,16 @@
                    $LTPTMP/tst_mail.res)
        fi
        if [ -z "$RC1" -a -z "$RC2" -a -z "$RC3" ]; then
-               tst_res TFAIL $LTPTMP/tst_mail.res \
-                   "Test #2: No new mail for root. Reason:"
-               : $(( TFAILCNT += 1 ))
+               RC4=$(awk '{print match($1 $2 $3, "Nomailfor")}' \
+                   $LTPTMP/tst_mail.res)
+               if [ \( "$tvar" = "redhat" -o "$tvar" = "redhat-linux" \) -a
-n "$RC4" ]; then
+                       tst_resm TPASS \
+                               "Test #2: No new mail for root as expected"
+               else
+                       tst_res TFAIL $LTPTMP/tst_mail.res \
+                           "Test #2: No new mail for root. Reason:"
+                       : $(( TFAILCNT += 1 ))
+               fi
        else
 
                if [ $RC1 -ne 0 -a $RC2 -ne 0 ] || [ $RC1 -ne 0 -a $RC3 -ne
0 ]; then
============



Regards--

-Tomonori Mitani

Attachment: mail_tests.sh.patch
Description: Binary data

------------------------------------------------------------------------------
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
_______________________________________________
Ltp-list mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ltp-list

Reply via email to