From patchwork Wed May 17 04:11:19 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Po-Hsu Lin X-Patchwork-Id: 683136 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8F5B0C77B75 for ; Wed, 17 May 2023 04:11:45 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231769AbjEQELo (ORCPT ); Wed, 17 May 2023 00:11:44 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43328 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229509AbjEQELn (ORCPT ); Wed, 17 May 2023 00:11:43 -0400 Received: from smtp-relay-canonical-1.canonical.com (smtp-relay-canonical-1.canonical.com [185.125.188.121]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id CC03DE77; Tue, 16 May 2023 21:11:41 -0700 (PDT) Received: from Phocidae.conference (1.general.phlin.uk.vpn [10.172.194.38]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by smtp-relay-canonical-1.canonical.com (Postfix) with ESMTPSA id 7532F4026B; Wed, 17 May 2023 04:11:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=canonical.com; s=20210705; t=1684296699; bh=uKNing954xz7FQw7FvKS/pI3qCFzr7vWKfumoDuRopI=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=kjcenEifqc63vTT9gXN5ixSp9+ueUVddiUV3UxkPaE42AOUVBC+7jC63I31iVkZC4 R5rrxq/Jc2Hle46v30dOuornMdcL1NCCU2fcQT1uSWD+b7WcLq+v3eYyiUhjgPAl8P dDd562+EoGsznrb8d/LjgpkDmaADdw1j32FLqm5scYqerVfwysTBVu+QqszU3e2t8i VKqwpgVBerCnaw5a3xd8YQBudXS0Y6uJtDmu92FikmuH8VTtG6kKDAI1F/RslBhRBM pq6PF5+utJPlNUePKtKhrhkcrIydDCEhAhTrTMZqghk6Kkqvm5hQULcnhO1mMF44mL 64HqJqQ918rZA== From: Po-Hsu Lin To: linux-kernel@vger.kernel.org, linux-kselftest@vger.kernel.org, netdev@vger.kernel.org Cc: po-hsu.lin@canonical.com, dsahern@gmail.com, shuah@kernel.org, pabeni@redhat.com, kuba@kernel.org, edumazet@google.com, davem@davemloft.net Subject: [PATCH] selftests: fib_tests: mute cleanup error message Date: Wed, 17 May 2023 12:11:19 +0800 Message-Id: <20230517041119.202072-1-po-hsu.lin@canonical.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-kselftest@vger.kernel.org In the end of the test, there will be an error message induced by the `ip netns del ns1` command in cleanup() Tests passed: 201 Tests failed: 0 Cannot remove namespace file "/run/netns/ns1": No such file or directory Redirect the error message to /dev/null to mute it. Fixes: a0e11da78f48 ("fib_tests: Add tests for metrics on routes") Signed-off-by: Po-Hsu Lin --- tools/testing/selftests/net/fib_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/testing/selftests/net/fib_tests.sh b/tools/testing/selftests/net/fib_tests.sh index 7da8ec8..35d89df 100755 --- a/tools/testing/selftests/net/fib_tests.sh +++ b/tools/testing/selftests/net/fib_tests.sh @@ -68,7 +68,7 @@ setup() cleanup() { $IP link del dev dummy0 &> /dev/null - ip netns del ns1 + ip netns del ns1 &> /dev/null ip netns del ns2 &> /dev/null }