소스 검색

- do not run tests that are not available

Bernhard Reutner-Fischer 18 년 전
부모
커밋
d4fb87c8db
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      test/Makefile

+ 6 - 0
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))