File: ert-helper.el

package info (click to toggle)
markdown-mode 2.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,484 kB
  • sloc: lisp: 14,543; makefile: 69; sh: 17
file content (8 lines) | stat: -rw-r--r-- 356 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
(require 'cl-lib)
;; The upstream Makefile runs their tests with the following expression:
(setq byte-compile-warnings (quote (not cl-functions)))
;; Byte-compile the test suite before running it, like upstream's Makefile
(cl-loop for f in
         (directory-files-recursively default-directory ".*\\.el$") do
         (byte-compile-file f))
(cd "tests")