Browse Source

add a way to just run uclibc or glibc tests

Mike Frysinger 18 years ago
parent
commit
acd7431a60
1 changed files with 8 additions and 1 deletions
  1. 8 1
      test/Test.mak

+ 8 - 1
test/Test.mak

@@ -22,7 +22,14 @@ U_TARGETS := $(TESTS)
 G_TARGETS := $(patsubst %,%_glibc,$(U_TARGETS))
 U_TARGETS += $(U_TESTS)
 G_TARGETS += $(G_TESTS)
-TARGETS    = $(U_TARGETS) $(G_TARGETS)
+
+TARGETS    = 
+ifeq ($(GLIBC_ONLY),)
+TARGETS   += $(U_TARGETS)
+endif
+ifeq ($(UCLIBC_ONLY),)
+TARGETS   += $(G_TARGETS)
+endif
 
 all: $(TARGETS)