branch: master
commit 839f651c802f6bd4bc1cb17a6f74134f35714435
Author: rocky <[email protected]>
Commit: rocky <[email protected]>
Organization cleanup
---
test/Makefile.am | 10 +++++-----
make-check-filter.rb => test/make-check-filter.rb | 0
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/test/Makefile.am b/test/Makefile.am
index 80518c2..711f08e 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -2,6 +2,9 @@ include $(top_srcdir)/common.mk
PHONY=check test all check-elget test-elget help
+#: same thing as check
+all: check
+
#: overall help on running the make targets
help:
@echo "The main function of this Makefile is to facilitate running
tests."
@@ -43,17 +46,14 @@ check: $(CHECK_FILES)
#: Run all tests via el-get
check-elget:
(cd $(top_srcdir)/test && $(EMACS) --batch --no-site-file --no-splash
--load ./install-pkgs.el --load test-load.el)
-# Leave out until we can get dependecies worked out
-# #: Run all tests via el-get
-#check-elget: $(EL_GET_CHECK_FILES)s
#: Run all tests with minimum verbosity
check-short:
- $(MAKE) check 2>&1 | ruby ../make-check-filter.rb
+ $(MAKE) check 2>&1 | ruby ./make-check-filter.rb
#: Run all tests with minimum verbosity via el-get
check-short-elget:
- $(MAKE) check-elget 2>&1 | ruby ../make-check-filter.rb
+ $(MAKE) check-elget 2>&1 | ruby ./make-check-filter.rb
test-%.run:
(cd $(top_srcdir)/test && $(EMACS) --batch --no-site-file --no-splash
--load $(@:.run=.el))
diff --git a/make-check-filter.rb b/test/make-check-filter.rb
similarity index 100%
rename from make-check-filter.rb
rename to test/make-check-filter.rb