From patchwork Thu Jun 13 03:13:51 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alison Schofield X-Patchwork-Id: 10991047 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id A9B40924 for ; Thu, 13 Jun 2019 03:10:43 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 8489F28671 for ; Thu, 13 Jun 2019 03:10:43 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 757C0280B0; Thu, 13 Jun 2019 03:10:43 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 Received: from ml01.01.org (ml01.01.org [198.145.21.10]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 51A27280B0 for ; Thu, 13 Jun 2019 03:10:42 +0000 (UTC) Received: from [127.0.0.1] (localhost [IPv6:::1]) by ml01.01.org (Postfix) with ESMTP id 268952129606B; Wed, 12 Jun 2019 20:10:42 -0700 (PDT) X-Original-To: linux-nvdimm@lists.01.org Delivered-To: linux-nvdimm@lists.01.org Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=192.55.52.88; helo=mga01.intel.com; envelope-from=alison.schofield@intel.com; receiver=linux-nvdimm@lists.01.org Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 3F8E721296069 for ; Wed, 12 Jun 2019 20:10:39 -0700 (PDT) X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 12 Jun 2019 20:10:38 -0700 X-ExtLoop1: 1 Received: from alison-desk.jf.intel.com ([10.54.74.53]) by orsmga001.jf.intel.com with ESMTP; 12 Jun 2019 20:10:38 -0700 Date: Wed, 12 Jun 2019 20:13:51 -0700 From: Alison Schofield To: linux-nvdimm@lists.01.org Subject: [ndctl PATCH] ndctl, test: move security.sh to the destructive test list Message-ID: <20190613031351.GA19074@alison-desk.jf.intel.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.9.4 (2018-02-28) X-BeenThere: linux-nvdimm@lists.01.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Linux-nvdimm developer list." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: linux-nvdimm-bounces@lists.01.org Sender: "Linux-nvdimm" X-Virus-Scanned: ClamAV using ClamSMTP security.sh changes the hosts key configuration. It is not guaranteed to reach its cleanup phase and restore the host configuration. Until we can isolate the test and host configurations, move this to the ENABLE_DESTRUCTIVE set of tests. Signed-off-by: Alison Schofield --- test/Makefile.am | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/Makefile.am b/test/Makefile.am index 42009c3..874c4bb 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -27,10 +27,6 @@ TESTS =\ max_available_extent_ns.sh \ pfn-meta-errors.sh -if ENABLE_KEYUTILS -TESTS += security.sh -endif - check_PROGRAMS =\ libndctl \ dsm-fail \ @@ -55,6 +51,10 @@ TESTS +=\ device-dax-fio.sh \ mmap.sh +if ENABLE_KEYUTILS +TESTS += security.sh +endif + check_PROGRAMS +=\ blk-ns \ pmem-ns \