diff options
author | Andreas Schwab <schwab@suse.de> | 2015-10-12 12:24:41 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2015-10-12 15:18:08 +0200 |
commit | f881f6ff62bba53448c5d8997287ea2e628b3a65 (patch) | |
tree | 404f7967786750db4513909c527088ff5783dd77 /stdlib | |
parent | c7b8939bf5646d1033375128f19261b401b9a0ce (diff) | |
download | glibc-f881f6ff62bba53448c5d8997287ea2e628b3a65.tar.gz glibc-f881f6ff62bba53448c5d8997287ea2e628b3a65.tar.xz glibc-f881f6ff62bba53448c5d8997287ea2e628b3a65.zip |
Add dependencies on needed locales in each subdir tests (bug 18969)
Diffstat (limited to 'stdlib')
-rw-r--r-- | stdlib/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/stdlib/Makefile b/stdlib/Makefile index 402466a623..9e0c2495c1 100644 --- a/stdlib/Makefile +++ b/stdlib/Makefile @@ -121,6 +121,18 @@ endif include ../Rules +ifeq ($(run-built-tests),yes) +LOCALES := cs_CZ.UTF-8 de_DE.UTF-8 en_US.ISO-8859-1 tr_TR.UTF-8 +include ../gen-locales.mk + +$(objpfx)bug-strtod2.out: $(gen-locales) +$(objpfx)testmb2.out: $(gen-locales) +$(objpfx)tst-strtod.out: $(gen-locales) +$(objpfx)tst-strtod3.out: $(gen-locales) +$(objpfx)tst-strtod4.out: $(gen-locales) +$(objpfx)tst-strtod5.out: $(gen-locales) +endif + # Testdir has to be named stdlib and needs to be writable test-canon-ARGS = --test-dir=${common-objpfx}stdlib |