From patchwork Thu May 3 11:36:37 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Anton Smorodskyi X-Patchwork-Id: 908029 X-Patchwork-Delegate: petr.vorel@gmail.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=lists.linux.it (client-ip=2001:1418:10:5::2; helo=picard.linux.it; envelope-from=ltp-bounces+incoming=patchwork.ozlabs.org@lists.linux.it; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=suse.com Received: from picard.linux.it (picard.linux.it [IPv6:2001:1418:10:5::2]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 40cFMQ6hMFz9s35 for ; Thu, 3 May 2018 22:49:06 +1000 (AEST) Received: from picard.linux.it (localhost [IPv6:::1]) by picard.linux.it (Postfix) with ESMTP id 3D6D33E75D7 for ; Thu, 3 May 2018 14:49:02 +0200 (CEST) X-Original-To: ltp@lists.linux.it Delivered-To: ltp@picard.linux.it Received: from in-7.smtp.seeweb.it (in-7.smtp.seeweb.it [217.194.8.7]) by picard.linux.it (Postfix) with ESMTP id 1E8E13E7096 for ; Thu, 3 May 2018 13:36:56 +0200 (CEST) Received: from mx2.suse.de (mx2.suse.de [195.135.220.15]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by in-7.smtp.seeweb.it (Postfix) with ESMTPS id 8DFF4200C34 for ; Thu, 3 May 2018 13:36:55 +0200 (CEST) Received: from relay1.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id 321FEACB3 for ; Thu, 3 May 2018 11:36:54 +0000 (UTC) From: Anton Smorodskyi To: ltp@lists.linux.it Date: Thu, 3 May 2018 13:36:37 +0200 Message-Id: <20180503113637.21573-1-asmorodskyi@suse.com> X-Mailer: git-send-email 2.13.6 X-Virus-Scanned: clamav-milter 0.99.2 at in-7.smtp.seeweb.it X-Virus-Status: Clean X-Spam-Status: No, score=-0.0 required=7.0 tests=SPF_PASS autolearn=disabled version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on in-7.smtp.seeweb.it X-Mailman-Approved-At: Thu, 03 May 2018 14:49:01 +0200 Cc: Anton Smorodskyi Subject: [LTP] [PATCH 1/1] ipneigh01: Replace TCONF error message with TINFO X-BeenThere: ltp@lists.linux.it X-Mailman-Version: 2.1.18 Precedence: list List-Id: Linux Test Project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: ltp-bounces+incoming=patchwork.ozlabs.org@lists.linux.it Sender: "ltp" When test case catch that arp command not support ipv6 it is more appropriate to send this as TINFO message Signed-off-by: Anton Smorodskyi --- testcases/network/tcp_cmds/ipneigh/ipneigh01.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testcases/network/tcp_cmds/ipneigh/ipneigh01.sh b/testcases/network/tcp_cmds/ipneigh/ipneigh01.sh index 9af3aa31e..24e540dd0 100755 --- a/testcases/network/tcp_cmds/ipneigh/ipneigh01.sh +++ b/testcases/network/tcp_cmds/ipneigh/ipneigh01.sh @@ -76,7 +76,7 @@ rhost=$(tst_ipaddr rhost) if [ -z "$TST_IPV6" ]; then do_test "arp -a" "arp -d $rhost" else - tst_resm TCONF "'arp cmd doesn't support IPv6, skipping test-case" + tst_resm TINFO "'arp cmd doesn't support IPv6, skipping test-case" fi do_test "ip neigh show" "ip neigh del $rhost dev $(tst_iface)"