Age | Commit message (Expand) | Author |
2021-09-29 | build: Use SRFI-64 test suite driver as found in Guix.•••This works around the fact that SRFI-64 in Guile 3.0.6+,
'test-runner-current' returns #f after 'test-end'. It also gives us a
more featureful test runner, where one can do things like:
make check TEST_LOG_DRIVER_FLAGS="--brief=no --show-duration=yes"
Reported by <soeren@soeren-tempel.net>.
* build-aux/test-driver.scm: New file.
* Makefile.am (EXTRA_DIST): Add it.
* tests/Makefile.am (TEST_LOG_DRIVER): New variable.
(TEST_LOG_COMPILER): New variable.
* tests/ast.test, tests/engines/info.test,
tests/location.test, tests/readers/rss-2.test,
tests/resolve.test: Remove call to 'exit'.
| Ludovic Courtès |
2020-08-01 | Write '#:use-module', '#:export', etc. instead of ':use-module', etc.•••Changes made by running:
for i in $(git ls-tree -r HEAD --name-only) ; do sed -i $i -e's/:use-module/#:use-module/g ; s/:autoload/#:autoload/g ; s/:export/#:export/g' ; done
| Ludovic Courtès |
2009-05-26 | resolve: Add new test.•••* tests/resolve.test ("unresolved node in nested document"): New test.
| Ludovic Courtès |
2009-05-26 | Make sure to bind nodes that are in the body of non-markup nodes.•••* src/guile/skribilo/ast.scm (document-bind-nodes!): Traverse other
nodes as well, such as processors.
* src/guile/skribilo/resolve.scm (do-resolve!<unresolved>>): Likewise.
* tests/resolve.test ("resolved nested document bindings"): New test.
| Ludovic Courtès |
2009-05-26 | Fix typo in `resolve.test'.•••* tests/resolve.test ("unresolved node in processor body"): Fix typo.
| Ludovic Courtès |
2009-05-26 | Fix node binding in sub-documents returned from unresolved nodes.•••* src/guile/skribilo/resolve.scm (do-resolve!<unresolved>): Bind
sub-nodes of RES in the innermost document rather than in the root
document.
* tests/resolve.test ("resolved nested document bindings"): New test.
| Ludovic Courtès |
2009-05-26 | resolve: Clarify node bindings in nested documents.•••* src/guile/skribilo/ast.scm (document-bind-nodes!): Bind nodes in the
innermost document, which may or may not be the root document.
* tests/resolve.test ("root document has no parent", "nested document
has a parent", "nested document is its own `ast-document'", "nested
document bindings"): New tests.
| Ludovic Courtès |
2009-05-25 | Add `resolve' unit tests.•••* tests/Makefile.am (TESTS): Add `resolve.test'.
(CLEANFILES): Add `resolve.log'.
| Ludovic Courtès |