From patchwork Tue May 29 08:36:12 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Florian Weimer X-Patchwork-Id: 27534 Received: (qmail 59371 invoked by alias); 29 May 2018 08:59:36 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 125891 invoked by uid 89); 29 May 2018 08:36:48 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=0.0 required=5.0 tests=TIME_LIMIT_EXCEEDED autolearn=unavailable version=3.3.2 spammy= X-HELO: mx1.redhat.com Date: Tue, 29 May 2018 10:36:12 +0200 To: libc-alpha@sourceware.org Subject: [PATCH] stdlib: Additional tests need generated locale dependencies User-Agent: Heirloom mailx 12.5 7/5/10 MIME-Version: 1.0 Message-Id: <20180529083612.DBC254036218C@oldenburg.str.redhat.com> From: fweimer@redhat.com (Florian Weimer) Without these dependencies, the tests fail at high make parallelism levels if the locale data has not been generated for other reasons. 2018-05-29 Florian Weimer * stdlib/Makefile (tst-strtod1i.out): Depend on generated locales. (tst-strtod5i.out): Likewise. diff --git a/stdlib/Makefile b/stdlib/Makefile index 1ddb1f9d18..bf1fbd4a3a 100644 --- a/stdlib/Makefile +++ b/stdlib/Makefile @@ -174,9 +174,11 @@ include ../gen-locales.mk $(objpfx)bug-strtod2.out: $(gen-locales) $(objpfx)testmb2.out: $(gen-locales) $(objpfx)tst-strtod.out: $(gen-locales) +$(objpfx)tst-strtod1i.out: $(gen-locales) $(objpfx)tst-strtod3.out: $(gen-locales) $(objpfx)tst-strtod4.out: $(gen-locales) $(objpfx)tst-strtod5.out: $(gen-locales) +$(objpfx)tst-strtod5i.out: $(gen-locales) $(objpfx)tst-strtol-locale.out: $(gen-locales) $(objpfx)tst-strtod-nan-locale.out: $(gen-locales) $(objpfx)tst-strfmon_l.out: $(gen-locales)