├── .gitignore ├── .merlin ├── .ocamlinit ├── HOWTO.adoc ├── LICENSE ├── Makefile ├── README.adoc ├── dune-project ├── editor_support ├── emacs │ └── batteries_dev.el └── kate_hl │ ├── install.sh │ ├── ocaml.xml │ ├── ocamllex.xml │ ├── ocamlyacc.xml │ └── valid.sh ├── qtest.opam ├── src ├── META ├── core.ml ├── dune ├── misclex.mll ├── qparse.mly └── qtest_bin.mll └── tests ├── Runner_ounit2_test.ml ├── Runner_ounit_test.ml ├── Runner_test.ml ├── cppo.ml.cppo ├── cppo.test.ml ├── directives.ml ├── directives.ml.reference ├── foo.ml ├── issue_43.ml ├── issue_49.ml ├── testcppo.sh ├── testdirectives.sh └── testfoo.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/.gitignore -------------------------------------------------------------------------------- /.merlin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/.merlin -------------------------------------------------------------------------------- /.ocamlinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/.ocamlinit -------------------------------------------------------------------------------- /HOWTO.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/HOWTO.adoc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/Makefile -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/README.adoc -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 1.0) 2 | -------------------------------------------------------------------------------- /editor_support/emacs/batteries_dev.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/editor_support/emacs/batteries_dev.el -------------------------------------------------------------------------------- /editor_support/kate_hl/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/editor_support/kate_hl/install.sh -------------------------------------------------------------------------------- /editor_support/kate_hl/ocaml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/editor_support/kate_hl/ocaml.xml -------------------------------------------------------------------------------- /editor_support/kate_hl/ocamllex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/editor_support/kate_hl/ocamllex.xml -------------------------------------------------------------------------------- /editor_support/kate_hl/ocamlyacc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/editor_support/kate_hl/ocamlyacc.xml -------------------------------------------------------------------------------- /editor_support/kate_hl/valid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/editor_support/kate_hl/valid.sh -------------------------------------------------------------------------------- /qtest.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/qtest.opam -------------------------------------------------------------------------------- /src/META: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/src/META -------------------------------------------------------------------------------- /src/core.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/src/core.ml -------------------------------------------------------------------------------- /src/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/src/dune -------------------------------------------------------------------------------- /src/misclex.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/src/misclex.mll -------------------------------------------------------------------------------- /src/qparse.mly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/src/qparse.mly -------------------------------------------------------------------------------- /src/qtest_bin.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/src/qtest_bin.mll -------------------------------------------------------------------------------- /tests/Runner_ounit2_test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/tests/Runner_ounit2_test.ml -------------------------------------------------------------------------------- /tests/Runner_ounit_test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/tests/Runner_ounit_test.ml -------------------------------------------------------------------------------- /tests/Runner_test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/tests/Runner_test.ml -------------------------------------------------------------------------------- /tests/cppo.ml.cppo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/tests/cppo.ml.cppo -------------------------------------------------------------------------------- /tests/cppo.test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/tests/cppo.test.ml -------------------------------------------------------------------------------- /tests/directives.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/tests/directives.ml -------------------------------------------------------------------------------- /tests/directives.ml.reference: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/tests/directives.ml.reference -------------------------------------------------------------------------------- /tests/foo.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/tests/foo.ml -------------------------------------------------------------------------------- /tests/issue_43.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/tests/issue_43.ml -------------------------------------------------------------------------------- /tests/issue_49.ml: -------------------------------------------------------------------------------- 1 | let x = "\\" 2 | 3 | (*$T 4 | false 5 | *) 6 | -------------------------------------------------------------------------------- /tests/testcppo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/tests/testcppo.sh -------------------------------------------------------------------------------- /tests/testdirectives.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/tests/testdirectives.sh -------------------------------------------------------------------------------- /tests/testfoo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent-hugot/qtest/HEAD/tests/testfoo.sh --------------------------------------------------------------------------------