From patchwork Fri Nov 14 13:27:42 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Jan Tulak X-Patchwork-Id: 5305941 Return-Path: X-Original-To: patchwork-fstests@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 2008DC11AC for ; Fri, 14 Nov 2014 13:29:18 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 2EF4F2013D for ; Fri, 14 Nov 2014 13:29:17 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id AECE42015D for ; Fri, 14 Nov 2014 13:29:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S935264AbaKNN3N (ORCPT ); Fri, 14 Nov 2014 08:29:13 -0500 Received: from mx1.redhat.com ([209.132.183.28]:47582 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S935253AbaKNN3N (ORCPT ); Fri, 14 Nov 2014 08:29:13 -0500 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id sAEDT5Ck028003 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Fri, 14 Nov 2014 08:29:05 -0500 Received: from jtulak.redhat.com (ovpn-112-57.ams2.redhat.com [10.36.112.57]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id sAEDT1KK016807; Fri, 14 Nov 2014 08:29:04 -0500 From: =?UTF-8?q?Jan=20=C5=A4ul=C3=A1k?= To: fstests@vger.kernel.org Cc: =?UTF-8?q?Jan=20=C5=A4ul=C3=A1k?= , lczerner@redhat.com, david@fromorbit.com Subject: [PATCH 2/7] Created empty environment files in test categories Date: Fri, 14 Nov 2014 14:27:42 +0100 Message-Id: <1415971667-16873-2-git-send-email-jtulak@redhat.com> In-Reply-To: <1415971667-16873-1-git-send-email-jtulak@redhat.com> References: <1415971667-16873-1-git-send-email-jtulak@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.68 on 10.5.11.26 Sender: fstests-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: fstests@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This patch creates empty enviornment files in test categories, because part of the underlying infrastructure is common with parsing group files. So nonexistence of these files causes error messages. (Althoug it should not break anything) Signed-off-by: Jan ?ulák --- tests/btrfs/environment | 7 +++++++ tests/ext4/environment | 7 +++++++ tests/generic/environment | 7 +++++++ tests/shared/environment | 7 +++++++ tests/udf/environment | 7 +++++++ tests/xfs/environment | 7 +++++++ 6 files changed, 42 insertions(+) create mode 100644 tests/btrfs/environment create mode 100644 tests/ext4/environment create mode 100644 tests/generic/environment create mode 100644 tests/shared/environment create mode 100644 tests/udf/environment create mode 100644 tests/xfs/environment diff --git a/tests/btrfs/environment b/tests/btrfs/environment new file mode 100644 index 0000000..238a8c2 --- /dev/null +++ b/tests/btrfs/environment @@ -0,0 +1,7 @@ +# QA environments control file +# Defines test environments +# - Do not start environment names with a digit. +# - If an environment is prefixed with underscore, the environment is prepared +# clean again, even if previously run test had the same environment. +# So big-files and _big-files are the same, only the first one is +# prepared only once, while the second one is prepared every time. diff --git a/tests/ext4/environment b/tests/ext4/environment new file mode 100644 index 0000000..238a8c2 --- /dev/null +++ b/tests/ext4/environment @@ -0,0 +1,7 @@ +# QA environments control file +# Defines test environments +# - Do not start environment names with a digit. +# - If an environment is prefixed with underscore, the environment is prepared +# clean again, even if previously run test had the same environment. +# So big-files and _big-files are the same, only the first one is +# prepared only once, while the second one is prepared every time. diff --git a/tests/generic/environment b/tests/generic/environment new file mode 100644 index 0000000..238a8c2 --- /dev/null +++ b/tests/generic/environment @@ -0,0 +1,7 @@ +# QA environments control file +# Defines test environments +# - Do not start environment names with a digit. +# - If an environment is prefixed with underscore, the environment is prepared +# clean again, even if previously run test had the same environment. +# So big-files and _big-files are the same, only the first one is +# prepared only once, while the second one is prepared every time. diff --git a/tests/shared/environment b/tests/shared/environment new file mode 100644 index 0000000..238a8c2 --- /dev/null +++ b/tests/shared/environment @@ -0,0 +1,7 @@ +# QA environments control file +# Defines test environments +# - Do not start environment names with a digit. +# - If an environment is prefixed with underscore, the environment is prepared +# clean again, even if previously run test had the same environment. +# So big-files and _big-files are the same, only the first one is +# prepared only once, while the second one is prepared every time. diff --git a/tests/udf/environment b/tests/udf/environment new file mode 100644 index 0000000..238a8c2 --- /dev/null +++ b/tests/udf/environment @@ -0,0 +1,7 @@ +# QA environments control file +# Defines test environments +# - Do not start environment names with a digit. +# - If an environment is prefixed with underscore, the environment is prepared +# clean again, even if previously run test had the same environment. +# So big-files and _big-files are the same, only the first one is +# prepared only once, while the second one is prepared every time. diff --git a/tests/xfs/environment b/tests/xfs/environment new file mode 100644 index 0000000..238a8c2 --- /dev/null +++ b/tests/xfs/environment @@ -0,0 +1,7 @@ +# QA environments control file +# Defines test environments +# - Do not start environment names with a digit. +# - If an environment is prefixed with underscore, the environment is prepared +# clean again, even if previously run test had the same environment. +# So big-files and _big-files are the same, only the first one is +# prepared only once, while the second one is prepared every time.