diff options
-rw-r--r-- | test/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/Makefile b/test/Makefile index 4c65d7c015..25af266c76 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,8 +1,9 @@ LEVEL = ../../.. include $(LEVEL)/Makefile.common -# Test in all immediate subdirectories if unset. -TESTDIRS ?= $(shell echo $(PROJ_SRC_DIR)/*/) +# Test in all immediate subdirectories if unset (except for the .svn and Output +# directories). +TESTDIRS ?= $(shell find $(PROJ_SRC_DIR) -depth 1 -type d -not -name .svn -prune -and -not -name Output -prune) ifndef TESTARGS ifdef VERBOSE |