From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id D1656383F857; Sun, 17 May 2020 17:19:45 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D1656383F857 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1589735985; bh=aBJL+NbMN040n1vWhOVkv0o7VOJ91UHgjORc+OFxWMc=; h=From:To:Subject:Date:In-Reply-To:References:From; b=poRfnh+z3GfVSmlbY5xTTDCxnGNIeROr9934pCtvB/Jff+uZOmxAqO2nnh6O7VlfZ 4SNLX20cv31U4ZDPTGqatebv9UsIzBv8ac5Sm4j0W3WXwjQKEBIJ/YwCpqa/5ojZFM Vq7xFa/25sur14yya5bzKSEGl0rqumx7w0SIKzxw= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug d/95167] libphobos: std.zip unittest depends on unzip being installed Date: Sun, 17 May 2020 17:19:45 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: d X-Bugzilla-Version: 10.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ibuclaw at gdcproject dot org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 May 2020 17:19:46 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D95167 --- Comment #2 from CVS Commits --- The releases/gcc-10 branch has been updated by Iain Buclaw : https://gcc.gnu.org/g:999c80acfdd890b789678c989c3d740969c14d20 commit r10-8150-g999c80acfdd890b789678c989c3d740969c14d20 Author: Iain Buclaw Date: Sun May 17 18:49:19 2020 +0200 libphobos: Backport library fixes from mainline - core.cpuid has been fixed to not use i7 detection on AMD processors. - std.net.curl has been fixed to correctly handle HTTP/2 status lines. - std.zip has had a test fixed to not rely on unzip being installed. libphobos/ChangeLog: PR d/95166 * libdruntime/core/cpuid.d (cpuidX86): Do not use i7 detection = on AMD processors. (hasCPUID): Fix deprecated asm syntax. PR d/95167 * src/std/zip.d (unittest): Skip test if unzip is not installed. PR d/95168 * src/std/net/curl.d (HTTP.onReceiveHeader): Move status line parsing to ... (HTTP.parseStatusLine): ... here. New function. Add support f= or parsing HTTP/2 status lines.=