Update of /cvsroot/emacs-jabber/emacs-jabber/tests
In directory sc8-pr-cvs17.sourceforge.net:/tmp/cvs-serv11629/tests
Modified Files:
Makefile.am
Added Files:
load-all.el
Log Message:
Revision: ma...@fr...--2005/emacs-jabber--cvs-head--0--patch-515
Creator: Magnus Henoch <ma...@fr...>
New test: check that all files can be loaded
--- NEW FILE: load-all.el ---
;; Test that all files can be loaded
(let* ((default-directory (expand-file-name (getenv "top_builddir")))
(elc-files (file-expand-wildcards "*.elc" t)))
(dolist (f elc-files)
(load f nil t)))
;; arch-tag: 509c4808-2e92-11dd-9c8c-000a95c2fcd0
Index: Makefile.am
===================================================================
RCS file: /cvsroot/emacs-jabber/emacs-jabber/tests/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- Makefile.am 15 May 2008 23:36:28 -0000 1.2
+++ Makefile.am 30 May 2008 21:57:15 -0000 1.3
@@ -1,3 +1,3 @@
-TESTS_ENVIRONMENT = $(EMACS) -batch -L $(top_builddir) -l
-TESTS = skip-tag-forward.el history.el
+TESTS_ENVIRONMENT = env top_builddir=$(top_builddir) $(EMACS) -batch -L $(top_builddir) -l
+TESTS = load-all.el skip-tag-forward.el history.el
dist_noinst_DATA = $(TESTS)
|