From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-10.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id CC26FCA9EAF for ; Tue, 22 Oct 2019 01:02:47 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 9CF342166E for ; Tue, 22 Oct 2019 01:02:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1571706167; bh=EfxL9OucbdQwXoutE0oMf4R9Qjm3BumsTArWE4d6BI8=; h=From:To:Cc:Subject:Date:List-ID:From; b=EsdKuA4y3gXMVrWa8LixOL6e30bq3gKXS753Ye5gwE5M2NzfXF0N/iQwrTj1Qn2HW QWj4whQd8OASc0h4oonR24lItSRZEP1C64uq3rZFuq/ZJcK5KeLy4tecCTCVXlmE10 xQtFmKM9f4y2fB1pT+F/0Pi/VJU4s7KE65sSTafs= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730220AbfJVBCq (ORCPT ); Mon, 21 Oct 2019 21:02:46 -0400 Received: from mail.kernel.org ([198.145.29.99]:41504 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727953AbfJVBCq (ORCPT ); Mon, 21 Oct 2019 21:02:46 -0400 Received: from localhost.localdomain (c-73-169-115-106.hsd1.co.comcast.net [73.169.115.106]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 99D152166E; Tue, 22 Oct 2019 01:02:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1571706166; bh=EfxL9OucbdQwXoutE0oMf4R9Qjm3BumsTArWE4d6BI8=; h=From:To:Cc:Subject:Date:From; b=xjiBMmxXPCjhpEzS5Bl34h1JaSsRtgXYKawXlcehxfkDSvg1T442sI9iavttZ7AZA 4DGHQlN1TUTkPAkn1Z12x1p7gO0mOjFHBmdZZ6sma5xvzRzW7H+hTYQCz9VrjT+/KU Uu0ol0r73CUH6yfOdYU45LWRKdppjzJGIOplfYP0= From: David Ahern To: davem@davemloft.net, jakub.kicinski@netronome.com Cc: netdev@vger.kernel.org, David Ahern , kernel test robot Subject: [PATCH net] selftests: Make l2tp.sh executable Date: Mon, 21 Oct 2019 19:02:43 -0600 Message-Id: <20191022010243.60916-1-dsahern@kernel.org> X-Mailer: git-send-email 2.20.1 (Apple Git-117) MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org From: David Ahern Kernel test robot reported that the l2tp.sh test script failed: # selftests: net: l2tp.sh # Warning: file l2tp.sh is not executable, correct this. Set executable bits. Fixes: e858ef1cd4bc ("selftests: Add l2tp tests") Reported-by: kernel test robot Signed-off-by: David Ahern --- tools/testing/selftests/net/l2tp.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 tools/testing/selftests/net/l2tp.sh diff --git a/tools/testing/selftests/net/l2tp.sh b/tools/testing/selftests/net/l2tp.sh old mode 100644 new mode 100755 -- 2.20.1 (Apple Git-117)