mutaml icon indicating copy to clipboard operation
mutaml copied to clipboard

An OCaml mutation tester

Results 12 mutaml issues
Sort by recently updated
recently updated
newest added

I would like to improve the dune support for mutaml. Could you give a run down of the current issues affecting it? I can see what we can do on...

There are some run time dependencies that are not met when the test runner is run within mutaml-runner. Here is what I tried: ```console $ mutaml-runner _build/default/test/expect-tests/dune_engine/.dune_engine_test.inline-tests/inline_test_runner_dune_engine_test.exe Could not read...

While testing on my old macBook I realized its `diff` didn't support `--color`. It would be nice:tm: to settle on a `diff` command usable across both Linux, macOS, and *BSD...

Hello, It seems that the instrumentation is launched before the preprocessor, generating errors in some cases. Here is a minimalistic example with sedlex preprocessing : ``` shell-session $ git clone...

To avoid running all the tests for all the mutations, `mutaml-runner` could set an environment variable `MUTAML_MUTATED_FILES` containing a list of files that have mutations active. This would allow to...

enhancement

Hi, I'd like to thank you for creating this tool! Is it possible to do mutations only on a subset of modules in a library? I'd like to try it...

enhancement

I was interested in trying this with a large code-base (https://github.com/stan-dev/stanc3) but ran into a few compile-time errors. This seems to be independent of #9, as editing the line in...

I am trying to run my codebase's tests (Same project as #28), which include a lot of things like ``` (rule (alias runtest) (action (diff pretty.expected pretty.output))) ``` Where the...

``` Mutation "src/frontend/lexer.mll-mutant2" passed (see "_mutations/src/frontend/lexer.mll-mutant2.output"): --- src/frontend/lexer.mll +++ src/frontend/lexer.mll-mutant2 @@ -7,14 +7,10 @@ open Debugging open Preprocessor -(* Boilerplate for getting line numbers for errors *) - let incr_linenum...