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 C166E1FF0A7 for ; Mon, 17 Aug 2026 14:00:19 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id 98F7E23E00; Mon, 17 Aug 2026 13:59:38 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=genua.de; s=202307; t=1786967963; bh=dfVSkP22p3jde/GfvtZJ6OPBhV0oYCmM8/c/03/sW/M=; h=Date:From:To:Subject:References:In-Reply-To:From; b=YBWNWpJZL3t41duzXvlx9wxmgnERNtx7avQppgMOqj2BBeY9mVjE+c4iVjy6BdPj8 rHYPUhTZv6Bqz3wHCayFWkkOocRrE6BYLRx78JRs0EJXmJPE3wMUuMXvDQEEdLW4fO IkvpkkkEswZLWoq/8BLKw2UYJd/WAyE5skh8J9GBlO9v5yL0tD52r68zkBCFSappbE 0+mFVhyXn0W4YgEUcsuk9R/AoL/RWqIphDJJvetXSuZZA5xTdDQnsVG1ScFaEh4qFO WWYdAUCF0T+oWbcx3nBI8hFRV6S+9+0/vewXt30gz1B/Uvx1+37O7GS9WBDguxfige GJRPv6TVdFugA== Date: Mon, 17 Aug 2026 13:59:22 +0200 From: Christian Ludwig To: 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="----06FA3557F3EC497349E19C2C71A5279D" X-SPAM-LEVEL: Spam detection results: 0 AWL 0.172 Adjusted score from AWL reputation of From: address DKIM_SIGNED 0.1 Message has a DKIM or DK signature, not necessarily valid DKIM_VALID -0.1 Message has at least one valid DKIM or DK signature DKIM_VALID_AU -0.1 Message has a valid DKIM or DK signature from author's domain DKIM_VALID_EF -0.1 Message has a valid DKIM or DK signature from envelope-from domain DMARC_PASS -0.1 DMARC pass policy 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: IASEUPGPR54UXCXHF5PFYWTVJL3WJGP4 X-Message-ID-Hash: IASEUPGPR54UXCXHF5PFYWTVJL3WJGP4 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: ------06FA3557F3EC497349E19C2C71A5279D 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 ------06FA3557F3EC497349E19C2C71A5279D--