This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
[PATCH] stdlib: Additional tests need generated locale dependencies
- From: fweimer at redhat dot com (Florian Weimer)
- To: libc-alpha at sourceware dot org
- Date: Tue, 29 May 2018 10:36:12 +0200
- Subject: [PATCH] stdlib: Additional tests need generated locale dependencies
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 <fweimer@redhat.com>
* 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)