diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-07-11 16:02:24 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-07-11 16:02:24 +0000 |
commit | d4fb87c8db1248a16067ccd11fa05ece595c8fc4 (patch) | |
tree | 37df9f2b5be97b2a9e1d8f1a8de6ac2938f3124a /test/Makefile | |
parent | e22185db7ad7bb042654b1b3d84b0289d3baa355 (diff) |
- do not run tests that are not available
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile index 63d299092..bfe3233a9 100644 --- a/test/Makefile +++ b/test/Makefile @@ -26,6 +26,12 @@ endif ifneq ($(UCLIBC_HAS_REGEX),y) DIRS := $(filter-out regex,$(DIRS)) endif +ifneq ($(UCLIBC_HAS_WCHAR),y) + DIRS := $(filter-out locale-mbwc,$(DIRS)) +endif +ifneq ($(UCLIBC_HAS_LOCALE),y) + DIRS := $(filter-out locale,$(DIRS)) +endif DIRS := $(filter-out math,$(DIRS)) |