From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 95080 invoked by alias); 31 Oct 2019 21:58:01 -0000 Mailing-List: contact libc-stable-help@sourceware.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Subscribe: List-Archive: Sender: libc-stable-owner@sourceware.org Received: (qmail 95068 invoked by uid 89); 31 Oct 2019 21:58:01 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Checked: by ClamAV 0.100.3 on sourceware.org X-Virus-Found: No X-Spam-SWARE-Status: No, score=-19.1 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.1 spammy= X-Spam-Status: No, score=-19.1 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on sourceware.org X-Spam-Level: X-HELO: vmicros1.altlinux.org Received: from vmicros1.altlinux.org (HELO vmicros1.altlinux.org) (194.107.17.57) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 31 Oct 2019 21:57:59 +0000 Received: from mua.local.altlinux.org (mua.local.altlinux.org [192.168.1.14]) by vmicros1.altlinux.org (Postfix) with ESMTP id 1932472CCEA for ; Fri, 1 Nov 2019 00:57:57 +0300 (MSK) Received: by mua.local.altlinux.org (Postfix, from userid 508) id EAB047CC773; Fri, 1 Nov 2019 00:57:56 +0300 (MSK) Date: Tue, 01 Jan 2019 00:00:00 -0000 From: "Dmitry V. Levin" To: libc-stable@sourceware.org Subject: [2.30 COMMITTED] Make tst-strftime2 and tst-strftime3 depend on locale generation Message-ID: <20191031215756.GB25544@altlinux.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-IsSubscribed: yes X-SW-Source: 2019-10/txt/msg00013.txt.bz2 From: "Gabriel F. T. Gomes" Building the test cases in parallel might make tst-strftime2 and tst-strftime3 fail. Simply re-running the test case (or building serially) makes the problem go away. This patch adds the necessary dependency to allow parallel builds in the time subdirectory. Tested for powerpc64le. Reviewed-by: Florian Weimer Reviewed-by: Tulio Magno Quites Machado Filho (cherry picked from commit 52151051b39293dac9fc3181cfd6240d7ce86ca1) --- ChangeLog | 6 ++++++ time/Makefile | 2 ++ 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index 29c864868a..4472d6c59d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2019-10-08 Gabriel F. T. Gomes + + * Makefile: Fix locale dependency for a couple of tests. + ($(objpfx)tst-strftime2.out): New rule. + ($(objpfx)tst-strftime3.out): Likewise. + 2019-09-20 Joseph Myers * sysdeps/unix/sysv/linux/riscv/vfork.S: Do not include diff --git a/time/Makefile b/time/Makefile index a428f55245..63b8d735ea 100644 --- a/time/Makefile +++ b/time/Makefile @@ -57,6 +57,8 @@ include ../gen-locales.mk $(objpfx)tst-ftime_l.out: $(gen-locales) $(objpfx)tst-strptime.out: $(gen-locales) +$(objpfx)tst-strftime2.out: $(gen-locales) +$(objpfx)tst-strftime3.out: $(gen-locales) endif tz-cflags = -DTZDIR='"$(zonedir)"' \ -- ldv