From patchwork Tue Jul 24 08:25:30 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Moese X-Patchwork-Id: 948252 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.de 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 41ZWcY6Pjhz9s29 for ; Tue, 24 Jul 2018 18:24:45 +1000 (AEST) Received: from picard.linux.it (localhost [IPv6:::1]) by picard.linux.it (Postfix) with ESMTP id 2086F3E6CD5 for ; Tue, 24 Jul 2018 10:24:43 +0200 (CEST) X-Original-To: ltp@lists.linux.it Delivered-To: ltp@picard.linux.it Received: from in-5.smtp.seeweb.it (in-5.smtp.seeweb.it [IPv6:2001:4b78:1:20::5]) by picard.linux.it (Postfix) with ESMTP id 771DD3E6B1A for ; Tue, 24 Jul 2018 10:24:41 +0200 (CEST) Received: from mx1.suse.de (mx2.suse.de [195.135.220.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by in-5.smtp.seeweb.it (Postfix) with ESMTPS id 4259260101F for ; Tue, 24 Jul 2018 10:24:41 +0200 (CEST) Received: from relay1.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id ADA07AD99 for ; Tue, 24 Jul 2018 08:24:40 +0000 (UTC) From: Michael Moese To: ltp@lists.linux.it Date: Tue, 24 Jul 2018 10:25:30 +0200 Message-Id: <20180724082530.18646-1-mmoese@suse.de> X-Mailer: git-send-email 2.18.0 X-Virus-Scanned: clamav-milter 0.99.2 at in-5.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-5.smtp.seeweb.it Subject: [LTP] [PATCH] add testcases/lib/tst_supported_fs to .gititnore 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" The binary tst_supported_fs was missing in the .gitinore file in testcases/lib, so it should be added. Signed-off-by: Michael Moese Reviewed-by: Xiao Yang --- testcases/lib/.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testcases/lib/.gitignore b/testcases/lib/.gitignore index 997940006..a9034e401 100644 --- a/testcases/lib/.gitignore +++ b/testcases/lib/.gitignore @@ -7,4 +7,5 @@ /tst_net_iface_prefix /tst_net_ip_prefix /tst_net_vars -/tst_getconf \ No newline at end of file +/tst_getconf +/tst_supported_fs