summaryrefslogtreecommitdiff
path: root/ocamltest/tsl_lexer.mll
Commit message (Collapse)AuthorAgeFilesLines
* New script language for ocamltest (#12185)Damien Doligez2023-04-251-4/+17
| | | | New test script language, all tests translated automatically (see `tools/translate-all-tests`).
* Check for syntax errors in test scripts instead of ignoring them. (#12194)Damien Doligez2023-04-221-1/+11
| | | check that anything that starts with `(* TEST` is indeed a test script
* Allow *[0-9]+ in test specificationsFlorian Angeletti2022-02-211-0/+2
|
* Add unset directive to ocamltestDavid Allsopp2021-07-101-0/+1
| | | | unset erases the given variable from the environment.
* change keword for postponing test blockDamien Doligez2021-05-051-3/+2
|
* use a marker at the top when the test block is at the end of the fileDamien Doligez2021-04-281-2/+3
|
* ocamltest: allow TEST block at end of fileDamien Doligez2021-04-281-0/+2
|
* TyposNicolás Ojeda Bär2020-05-271-1/+1
|
* Add ocamltest -find-test-dirs and -list-tests optionsNicolás Ojeda Bär2019-09-281-3/+3
|
* Harden ocamltest against errors in scripts and hooksDamien Doligez2019-04-021-1/+13
|
* Support continuation characters in ocamltestDavid Allsopp2018-06-141-6/+24
| | | | | | Allows strings to be entered on multiple lines by permitting backslash to escape the newline sequence and optionally a backslash to escape a space at the start of the following line.
* ocamltest: make it possible to declare variables in the DSLSébastien Hinderer2018-03-211-0/+1
|
* ocamltest: add syntax "+=" for appending to variablesNicolas Ojeda Bar2017-12-051-0/+1
|
* ocamltest: refactoring and implementation of hooksSébastien Hinderer2017-11-231-1/+1
|
* ocamltest: the test driver for the OCaml compilerSébastien Hinderer2017-09-181-0/+96
This commit contains: - The initial version of the tool itself, in the ocamltest directory - The required additions to the main .gitignore and .merlin files. The integration of ocamltest in OCaml's main build system and its use in the testsuite are not part of this commit. Credits go to David Allsopp for - Extending the computation of ocamlsrcdir to the Windows case - Making ocamltest compile when flexlink is being bootstrapped.