From 397ed49906b95bdd86eb3d58f4aaa85e8c1d8a66 Mon Sep 17 00:00:00 2001 From: David Engster Date: Wed, 20 Apr 2011 20:34:49 +0200 Subject: [PATCH] Installed Makefile rules for NNTP testing. * Makefile.in (test-nntp): New rule. (check): Add it. (test-registry): Change '$(EMACS_COMP)' to '$(EMACS) $(FLAGS)'. --- lisp/ChangeLog | 8 ++++++++ lisp/Makefile.in | 7 +++++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d137b42b5..885e0edd4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,11 @@ +2011-04-20 David Engster + + * tests/gnustest-nntp.el: New file for simple NNTP testing. + + * Makefile.in (test-nntp): New rule. + (check): Add it. + (test-registry): Change '$(EMACS_COMP)' to '$(EMACS) $(FLAGS)'. + 2011-04-20 Katsumi Yamaoka * gnus-registry.el (gnus-registry-action) diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 58d99a1e2..776d5ef44 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in @@ -36,10 +36,13 @@ clever some l: gnus-load.el install: install-el-elc list-installed-shadows # Test rules -check: test-registry +check: test-registry test-nntp test-registry: - $(EMACS_COMP) -l ert -l gnus-registry.el -f ert-run-tests-batch-and-exit + $(EMACS) $(FLAGS) -l ert -l gnus-registry.el -f ert-run-tests-batch-and-exit + +test-nntp: + $(EMACS) $(FLAGS) -l ert -l tests/gnustest-nntp.el -f ert-run-tests-batch-and-exit # This entry will never install .el files if there are no .elc files. install-el: gnus-load.el -- 2.25.1