From patchwork Mon Jul 13 21:23:46 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Aurelien Jarno X-Patchwork-Id: 40091 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 9DB4D388E82E; Mon, 13 Jul 2020 21:23:57 +0000 (GMT) X-Original-To: libc-alpha@sourceware.org Delivered-To: libc-alpha@sourceware.org Received: from hall.aurel32.net (hall.aurel32.net [IPv6:2001:bc8:30d7:100::1]) by sourceware.org (Postfix) with ESMTPS id BD4A9388C006 for ; Mon, 13 Jul 2020 21:23:53 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org BD4A9388C006 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=aurel32.net Authentication-Results: sourceware.org; spf=none smtp.mailfrom=aurelien@aurel32.net DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=aurel32.net ; s=202004.hall; h=Content-Transfer-Encoding:MIME-Version:Message-Id:Date: Subject:Cc:To:From:Content-Type:From:Reply-To:Subject:Content-ID: Content-Description:In-Reply-To:References:X-Debbugs-Cc; bh=YI76IL55swj+kK1dcjrirIx/Z6/EpHFu/vrjtqKwYbk=; b=OSj7D0E1M03LizBcGxtLcUon/p ikZDRWkiEoAs+0cjW0Ne90vu7ccXXInQqSaChBqzL9+kxMvlgTE3NDWXuv+FCKX4cXUBHOgARQ1/a GiOHoqirzuMF2CRLhxflDh8TVY2a3R8ko69KYdN+BMMMI9gc+NaJsW58DnTCrnABLUUMjL3XsfyxP UmIRoNuMhhppItOKKIhhLLr4+DJ3bt2d+W892A5CzyiAR+nnfqvARSWTyypmwRPprT38yu7Hc91dY Dn/dIEQ0JH4NLlK6v0oXLgs8I1w1f7PB0XuGbSa44JmHmeYAcTMWUk3Q8XY7g7PoYayNKHDtLQigj E1abOEZQ==; Received: from [2a01:e35:2fdd:a4e1:fe91:fc89:bc43:b814] (helo=ohm.rr44.fr) by hall.aurel32.net with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1jv5vU-0008DF-Mw; Mon, 13 Jul 2020 23:23:52 +0200 Received: from aurel32 by ohm.rr44.fr with local (Exim 4.94) (envelope-from ) id 1jv5vU-001cNJ-34; Mon, 13 Jul 2020 23:23:52 +0200 From: Aurelien Jarno To: libc-alpha@sourceware.org Subject: [PATCH v2 1/2] arm: remove string/tst-memmove-overflow XFAIL Date: Mon, 13 Jul 2020 23:23:46 +0200 Message-Id: <20200713212347.385792-1-aurelien@aurel32.net> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 X-Spam-Status: No, score=-10.6 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, SPF_HELO_PASS, SPF_NONE, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libc-alpha-bounces@sourceware.org Sender: "Libc-alpha" The arm string/tst-memmove-overflow XFAIL has been added in commit eca1b233322 ("arm: XFAIL string/tst-memmove-overflow due to bug 25620") as a way to reproduce the reported bug. Now that this bug has been fixed in commits 79a4fa341b8 ("arm: CVE-2020-6096: fix memcpy and memmove for negative length [BZ #25620]") and beea3610507 ("arm: CVE-2020-6096: Fix multiarch memcpy for negative length [BZ #25620]"), let's remove the XFAIL. Reviewed-by: Carlos O'Donell --- sysdeps/arm/Makefile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/sysdeps/arm/Makefile b/sysdeps/arm/Makefile index a0cb7f3c32e..ad2042b93a1 100644 --- a/sysdeps/arm/Makefile +++ b/sysdeps/arm/Makefile @@ -68,8 +68,3 @@ ifeq ($(subdir),nptl) libpthread-sysdep_routines += pt-arm-unwind-resume libpthread-shared-only-routines += pt-arm-unwind-resume endif - -ifeq ($(subdir),string) -# This test fails on arm due to bug 25620 and related issues. -test-xfail-tst-memmove-overflow = yes -endif