public inbox for ltp@lists.linux.it
 help / color / mirror / Atom feed
* Re: [LTP] [PATCH v4] ltp-networking/tcp_cmds/finger: fix finger bad user and host test
       [not found] <1412835916-5039-1-git-send-email-liuhangbin@gmail.com>
@ 2015-01-13 10:24 ` Cyril Hrubis
  0 siblings, 0 replies; only message in thread
From: Cyril Hrubis @ 2015-01-13 10:24 UTC (permalink / raw)
  To: Hangbin Liu; +Cc: LTP List

Hi!
> Finger always return 0 with bad user and host test. And it also return
> different error message on different distros. So let's only check stderr
> message and decide whether the test pass or fail.

Okay, so the test passes if anything was written into stderr. Sounds
good to me.

> Signed-off-by: Hangbin Liu <liuhangbin@gmail.com>
> ---
>  testcases/network/tcp_cmds/finger/finger01 | 11 +++++------
>  1 file changed, 5 insertions(+), 6 deletions(-)
> 
> diff --git a/testcases/network/tcp_cmds/finger/finger01 b/testcases/network/tcp_cmds/finger/finger01
> index 203d746..e01c1ad 100755
> --- a/testcases/network/tcp_cmds/finger/finger01
> +++ b/testcases/network/tcp_cmds/finger/finger01
> @@ -112,14 +112,13 @@ do_test2()
>      BADHOST="xxxx"
>  
>      tst_resm TINFO "finger -badflag default "
> -    finger -x 2>&1 1>/dev/null && end_testcase "finger -x should fail"
> +    finger -x &>/dev/null && end_testcase "finger -x should fail"
>  
>      tst_resm TINFO "finger -bad user "
> -    finger $BADUSER 2>&1 1>/dev/null || end_testcase "finger $BADUSER"
> -    finger @$BADHOST 2>&1 1>/dev/null | grep "finger: unknown host" \
> -        || end_testcase "finger @$BADHOST"
> -    if ! finger $BADUSER@$BADHOST 2>&1 1>/dev/null \
> -        | grep "finger: unknown host"; then
> +    [ "$(finger $BADUSER 2>&1 1>/dev/null)" ] || end_testcase "finger $BADUSER"
> +    [ "$(finger @$BADHOST 2>&1 1>/dev/null)" ] || \
> +        end_testcase "finger @$BADHOST"
> +    [ "finger $BADUSER@$BADHOST 2>&1 1>/dev/null" ] || \

Missing $(), otherwise this will be always true because we just pass a
string to the [].

>          end_testcase "finger $BADUSER@$BADHOST"
>      fi

And this fi does belong to the deleted if.

Alexey can you please fix the minor issues and push the patch?

-- 
Cyril Hrubis
chrubis@suse.cz

------------------------------------------------------------------------------
New Year. New Location. New Benefits. New Data Center in Ashburn, VA.
GigeNET is offering a free month of service with a new server in Ashburn.
Choose from 2 high performing configs, both with 100TB of bandwidth.
Higher redundancy.Lower latency.Increased capacity.Completely compliant.
http://p.sf.net/sfu/gigenet
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-01-13 10:25 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1412835916-5039-1-git-send-email-liuhangbin@gmail.com>
2015-01-13 10:24 ` [LTP] [PATCH v4] ltp-networking/tcp_cmds/finger: fix finger bad user and host test Cyril Hrubis

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