| Age | Commit message (Collapse) | Author |
|
* The "./test1.v" relative filename triggered an issue
=> use (coq-test-full-path "test1.v")
* The (coq-test-cmd "...") was not optimal for coq-test-print
=> use (progn
(coq-test-goto-before "(*some-unique-identifier*)")
(proof-goto-point)
(proof-shell-wait))
* The (string-trim "...") function was not defined in batch mode
=> use (require 'subr-x)
& Remove forgotten "(setq temp" snippet.
|
|
|
|
* Fix test.sh so it can be run from the parent dir
|
|
TODO: Expand it using
- https://github.com/rejeep/ert-async.el
- and/or https://www.gnu.org/software/emacs/manual/html_node/ert/index.html
|
|
* Inspired by https://github.com/pfitaxel/learn-ocaml.el/blob/master/test.sh
(under license MIT)
|