Typographic transforms (---, quote pairs, ~) no longer touch verbatim text: @c/@code/@source_listing content and ^'...'^ spans show exactly the characters written. "^" before any punctuation character quotes it in every target (the apostrophe excepted: ^' opens a literal span), with the new :resolve option on @@@target declaring per-target renderings. The ^UUUU^ code-point form accepts 4-6 hex digits, the full Unicode range. The html output and transform spellings are polyglot (XML-valid), in preparation for an EPUB target. New suites: transform_test, character_test (engine), typography_test (SKS). (from dev 07ce5ea86a0a)
34 lines
833 B
Makefile
34 lines
833 B
Makefile
# Klammertext distribution test suite (subset).
|
|
#
|
|
# Runs the shell regression suites shipped with this snapshot (the list is
|
|
# generated from the distribution manifest, so it cannot drift from the files
|
|
# actually shipped). Each suite's own header comment says what it covers.
|
|
#
|
|
# Requires KLAMMERTEXT_HOME set and `ktext` on PATH (build it with `make -C com`).
|
|
|
|
.PHONY: test
|
|
test:
|
|
./cond_test.sh
|
|
./eval_test.sh
|
|
./recursion_test.sh
|
|
./check_test.sh
|
|
./deftype_test.sh
|
|
./escape_test.sh
|
|
./transform_test.sh
|
|
./character_test.sh
|
|
./filename_test.sh
|
|
./alone_test.sh
|
|
./state_test.sh
|
|
./target_test.sh
|
|
./modulepath_test.sh
|
|
./klammerset_test.sh
|
|
./option_set_test.sh
|
|
./signature_test.sh
|
|
./target_list_test.sh
|
|
./coverage_test.sh
|
|
./command_option_test.sh
|
|
./verbosity_test.sh
|
|
./kdesc_test.sh
|
|
./kdiag_test.sh
|
|
./editor_test.sh
|