Update robot test tag from sanity to daily
[osm/devops.git] / descriptor-packages / mk / dirs.mk
index b3df405..8e00787 100644 (file)
@@ -18,6 +18,7 @@ TOPDIR=$(shell readlink -f .|sed -e 's/\/descriptor-packages\/.*//')
 TOOLS_DIR := $(TOPDIR)/tools
 
 SUBDIRS_CLEAN = $(addsuffix .clean, $(SUBDIRS))
+SUBDIRS_TEST = $(addsuffix .test, $(SUBDIRS))
 
 .PHONY: $(SUBDIRS) $(SUBDIRS_CLEAN) clean
 
@@ -25,9 +26,14 @@ all: $(SUBDIRS)
 
 clean: $(SUBDIRS_CLEAN)
 
+test: $(SUBDIRS_TEST)
+
 $(SUBDIRS_CLEAN): %.clean:
        @$(MAKE) --no-print-directory -C $* clean
 
+$(SUBDIRS_TEST): %.test:
+       @$(MAKE) --no-print-directory -C $* test
+
 $(SUBDIRS):
        @$(MAKE) --no-print-directory -C $@