Improve documentation
[sxemacs] / tests / Makefile.am
index b511101..b9499a5 100644 (file)
@@ -55,17 +55,20 @@ automated_tests = automated/ase-cartesian-tests.el                      \
        automated/cl-loop-tests.el automated/c-tests.el                 \
        automated/database-tests.el automated/ent-tests.el              \
        automated/extent-tests.el automated/hash-table-tests.el         \
+       automated/format-tests.el                                       \
        automated/inplace-tests.el automated/lisp-reader-tests.el       \
        automated/lisp-tests.el automated/md5-tests.el                  \
        automated/mule-tests.el automated/openssl-tests.el              \
+       automated/map-tests.el                                          \
        automated/os-tests.el automated/regexp-tests.el                 \
        automated/region-tests.el automated/skiplist-tests.el           \
        automated/symbol-tests.el automated/syntax-tests.el             \
        automated/tag-tests.el automated/test-harness.el                \
        automated/weak-tests.el automated/README
+benchmark_tests = benchmark/benchmark.el
 
 EXTRA_DIST = $(misc_tests) $(mule_tests)               \
-       $(DLL_tests) $(automated_tests)
+       $(DLL_tests) $(automated_tests) $(benchmark_tests)
 
 CLEANFILES = stage1 stage2
 
@@ -81,7 +84,7 @@ SXEDMP = $(SXEMACS).dmp
 testdir = $(srcdir)
 testautomdir = $(testdir)/automated
 tests_environment = $(BATCHENV) \
-       $(SXEMACS) -batch -l ${testautomdir}/test-harness.el \
+       $(SXEMACS) -batch -vanilla -l ${testautomdir}/test-harness.el \
                -f batch-test-emacs $(testautomdir)
 
 ## Use our former check target
@@ -89,19 +92,19 @@ check-am: $(SXEMACS) $(SXEDMP)
        $(tests_environment)
 
 check-formats: $(SXEMACS) $(SXEDMP)
-       $(BATCHENV) $(SXEMACS) -l ${testautomdir}/test-harness.el \
+       $(BATCHENV) $(SXEMACS) -vanilla -l ${testautomdir}/test-harness.el \
        -f batch-test-emacs $(testautomdir)/format-tests.el
 
 check-map: $(SXEMACS) $(SXEDMP)
-       $(BATCHENV) $(SXEMACS) -l ${testautomdir}/test-harness.el \
+       $(BATCHENV) $(SXEMACS) -vanilla -l ${testautomdir}/test-harness.el \
        -f batch-test-emacs $(testautomdir)/map-tests.el
 
 check-skiplists: $(SXEMACS) $(SXEDMP)
-       $(BATCHENV) $(SXEMACS) -l ${testautomdir}/test-harness.el \
+       $(BATCHENV) $(SXEMACS) -vanilla -l ${testautomdir}/test-harness.el \
        -f batch-test-emacs $(testautomdir)/skiplist-tests.el
 
 check-%: $(SXEMACS) $(SXEDMP)
-       $(BATCHENV) $(SXEMACS) -l ${testautomdir}/test-harness.el \
+       $(BATCHENV) $(SXEMACS) -vanilla -l ${testautomdir}/test-harness.el \
        -f batch-test-emacs $(testautomdir)/$*-tests.el