diff options
author | Andreas Jaeger <aj@suse.de> | 2000-06-27 12:14:09 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-06-27 12:14:09 +0000 |
commit | 5b905722f66719de502ecd6129ef9a1bda4f9f47 (patch) | |
tree | e74e131343a6427f807f151abcabcce2c62f94ee /localedata/Makefile | |
parent | 756bb30555774e22121790fd6eb3dcf2ca4ed29e (diff) | |
download | glibc-5b905722f66719de502ecd6129ef9a1bda4f9f47.tar.gz glibc-5b905722f66719de502ecd6129ef9a1bda4f9f47.tar.xz glibc-5b905722f66719de502ecd6129ef9a1bda4f9f47.zip |
* Makefile (tests): Add tests from tests-mbwc subdirectory,
comment them out for now. (subdir-dirs): New for tests-mbwc, add also vpaths. * Makefile (tests): Add tests from tests-mbwc subdirectory, comment them out for now. (subdir-dirs): New for tests-mbwc, add also vpaths.
Diffstat (limited to 'localedata/Makefile')
-rw-r--r-- | localedata/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/localedata/Makefile b/localedata/Makefile index f713ab616e..bf17ed7a1f 100644 --- a/localedata/Makefile +++ b/localedata/Makefile @@ -35,6 +35,19 @@ locales := $(filter-out $(addprefix locales/, CVS RCS SCCS %~), \ repertoiremaps := $(filter-out $(addprefix repertoiremaps/, CVS RCS SCCS %~), \ $(wildcard repertoiremaps/*)) +# Disable the tests for now - first the locales have to be generated +#tests := tst_iswalnum tst_iswprint tst_towctrans tst_wcsncmp tst_wctrans \ +# tst_iswalpha tst_iswpunct tst_wcschr tst_wcspbrk tst_wctype \ +# tst_iswcntrl tst_iswspace tst_wcscoll tst_wcsspn tst_iswdigit \ +# tst_iswupper tst_wcscpy tst_wcsstr tst_iswgraph tst_iswxdigit \ +# tst_wcscspn tst_wcswidth tst_iswlower tst_swscanf tst_wcslen \ +# tst_wctob + +subdir-dirs = tests-mbwc +vpath %.c tests-mbwc +vpath %.h tests-mbwc + + test-srcs := collate-test xfrm-test tst-fmon tst-rpmatch tst-trans \ tst-mbswcs1 tst-mbswcs2 tst-mbswcs3 tst-mbswcs4 tst-mbswcs5 \ tst-ctype @@ -122,3 +135,20 @@ install-locales: -u repertoiremaps/mnemonic.ds \ $(inst_localedir)/$$locale; \ done < SUPPORTED + +tst_iswcntrl-ENV=LOCPATH=$(common-objpfx)/localedata +tst_iswspace-ENV=LOCPATH=$(common-objpfx)/localedata +tst_wcscoll-ENV=LOCPATH=$(common-objpfx)/localedata +tst_wcsspn-ENV=LOCPATH=$(common-objpfx)/localedata +tst_iswdigit-ENV=LOCPATH=$(common-objpfx)/localedata +tst_iswupper-ENV=LOCPATH=$(common-objpfx)/localedata +tst_wcscpy-ENV=LOCPATH=$(common-objpfx)/localedata +tst_wcsstr-ENV=LOCPATH=$(common-objpfx)/localedata +tst_iswgraph-ENV=LOCPATH=$(common-objpfx)/localedata +tst_iswxdigit-ENV=LOCPATH=$(common-objpfx)/localedata +tst_wcscspn-ENV=LOCPATH=$(common-objpfx)/localedata +tst_wcswidth-ENV=LOCPATH=$(common-objpfx)/localedata +tst_iswlower-ENV=LOCPATH=$(common-objpfx)/localedata +tst_swscanf-ENV=LOCPATH=$(common-objpfx)/localedata +tst_wcslen-ENV=LOCPATH=$(common-objpfx)/localedata +tst_wctob-ENV=LOCPATH=$(common-objpfx)/localedata |