From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate001.proxmox.com (gate001.proxmox.com [IPv6:2a0f:8001:1:32::40]) by lore.proxmox.com (Postfix) with ESMTPS id 4F2571FF0A7 for ; Mon, 17 Aug 2026 11:36:02 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id 24D3923A4C; Mon, 17 Aug 2026 11:36:01 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=genua.de; s=202307; t=1786958963; bh=FhgVLTQxBdwVbKfi1Enpe2KgIKdGhOuiYKTv5igFG5g=; h=Date:From:To:Subject:References:In-Reply-To:From; b=lJwI4/dbzDKqTAaQjW5eDf+8PsjEKFLfC/CH1GtaAJpR12PsGp+3YPwiH/ovXZtok 6OIPeZ8Ceuw8TY8UKmWDAG4z+oHnBG5D1/5Kc9y1ev4oxvrOwzyU1byPa8IvtjGUfz 6QSAqp+4+ZK0Gd3WUPKoDxIvgN55wb6IHvOY8AOdFG1eIrq2V9BKNOV/I6d5yNIp7K yIiwpzl7F3JEl3yaO2jzhuBOhjeoN4csQ7MQMphp0pjO6Ln5T3nDWBS2IJ8cIH2p4b Ct+9boTPpFc+H/cyBnfKcgkCMj9/4WwpMERIep2Y2H7Zrp01kZK8cuZlsWf+VpOmGl LL+/ZtA5OspQg== Date: Mon, 17 Aug 2026 11:29:22 +0200 From: Christian Ludwig To: , <-b@genua.de>, Subject: [PATCH pve-storage 2/13] Test for efi-firmware content type Message-ID: References: MIME-Version: 1.0 In-Reply-To: X-Originating-IP: [192.168.217.185] X-ClientProxiedBy: kch1-mta08.win.genua.de (10.208.16.108) To kch1-mta07.win.genua.de (10.208.16.107) Content-Type: multipart/signed; protocol="application/pkcs7-signature"; micalg="sha-256"; boundary="----98AAAF6C15F0A764E29F90960B4331A5" X-SPAM-LEVEL: Spam detection results: 0 DKIM_INVALID 0.1 DKIM or DK signature exists, but is not valid DKIM_SIGNED 0.1 Message has a DKIM or DK signature, not necessarily valid DMARC_PASS -0.1 DMARC pass policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment (newer systems) SPF_HELO_PASS -0.001 SPF: HELO matches SPF record SPF_PASS -0.001 SPF: sender matches SPF record UNPARSEABLE_RELAY 0.001 Informational: message has unparseable relay lines Message-ID-Hash: GW4EDCB25J4MDPKG6T43NTFYM652AXYL X-Message-ID-Hash: GW4EDCB25J4MDPKG6T43NTFYM652AXYL X-MailFrom: christian_ludwig@genua.de X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Content-Filtered-By: Mailman/MimeDel 3.3.10 X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox VE development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: ------98AAAF6C15F0A764E29F90960B4331A5 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline Signed-off-by: Christian Ludwig --- src/test/get_subdir_test.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/test/get_subdir_test.pm b/src/test/get_subdir_test.pm index 5fb5445..5be6de8 100644 --- a/src/test/get_subdir_test.pm +++ b/src/test/get_subdir_test.pm @@ -19,6 +19,8 @@ my $tests = [ # failed matches [$scfg_with_path, 'none', "unknown vtype 'none'\n"], [{}, 'iso', "storage definition has no path\n"], + # efi-firmware vtype returns /efi-firmware + [$scfg_with_path, 'efi-firmware', "$scfg_with_path->{path}/efi-firmware"], ]; # creates additional positive tests -- 2.34.1 ------98AAAF6C15F0A764E29F90960B4331A5--