From patchwork Tue Nov 15 14:45:00 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Luis Henriques X-Patchwork-Id: 13043796 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 09715C433FE for ; Tue, 15 Nov 2022 14:45:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231314AbiKOOpe (ORCPT ); Tue, 15 Nov 2022 09:45:34 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57034 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232818AbiKOOpQ (ORCPT ); Tue, 15 Nov 2022 09:45:16 -0500 Received: from smtp-out2.suse.de (smtp-out2.suse.de [IPv6:2001:67c:2178:6::1d]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2087727176; Tue, 15 Nov 2022 06:44:03 -0800 (PST) Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id A86FA1F8D2; Tue, 15 Nov 2022 14:44:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1668523442; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=5DG1Uhvjr2nebGEtrDXagxI6OIIcIOPdw5cys3pEnVU=; b=Oyo4PtUTV6OQnvRWcMTjurCb+4vO2gj5dykHXPtcu8HPE0HkpdA9rnPAFwomeuqK0Ddiaj IQQ4sGtieg8gmoMpylBQi8uTHGjQPB0QJIRYXTxagB2GIP+gVgZBgfBFmRmv7m6bU7zY3r Szb6eOzGuWly/OMK2nO8DkfIphbsNEE= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1668523442; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=5DG1Uhvjr2nebGEtrDXagxI6OIIcIOPdw5cys3pEnVU=; b=4jx5Gf8Z0rO5KHVz8MDzimzsKThh2I5gHi8lbZZOU36WwbxaCCUg7n1Sav5PiIGBaBe0Sz LQVVqM4EjFN7I8Cw== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id 5661713A91; Tue, 15 Nov 2022 14:44:02 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id 7k59ErKlc2NVCQAAMHmgww (envelope-from ); Tue, 15 Nov 2022 14:44:02 +0000 Received: from localhost (brahms.olymp [local]) by brahms.olymp (OpenSMTPD) with ESMTPA id 6f62b2e7; Tue, 15 Nov 2022 14:45:01 +0000 (UTC) From: =?utf-8?q?Lu=C3=ADs_Henriques?= To: fstests@vger.kernel.org Cc: Xiubo Li , Jeff Layton , ceph-devel@vger.kernel.org, =?utf-8?q?Lu=C3=ADs_Henriques?= Subject: [PATCH] ceph/005: skip test if using "test_dummy_encryption" Date: Tue, 15 Nov 2022 14:45:00 +0000 Message-Id: <20221115144500.10015-1-lhenriques@suse.de> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: fstests@vger.kernel.org When using the "test_dummy_encryption" mount option, new file and directory names will be encrypted. This means that if using as a mount base directory a newly created directory, we would have to use the encrypted directory name instead. For the moment, ceph doesn't provide a way to get this encrypted file name, thus for now simply skip this test. Signed-off-by: Luís Henriques Reviewed-by: Xiubo Li --- tests/ceph/005 | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/ceph/005 b/tests/ceph/005 index fd71d91350db..015f6571b098 100755 --- a/tests/ceph/005 +++ b/tests/ceph/005 @@ -13,6 +13,7 @@ _begin_fstest auto quick quota _supported_fs ceph _require_scratch +_exclude_test_mount_option "test_dummy_encryption" _scratch_mount mkdir -p "$SCRATCH_MNT/quota-dir/subdir"