Alex Denisov
Alex Denisov
We should add SARIF reporter so that we can get better GitHub integration https://docs.github.com/en/code-security/code-scanning/integrating-with-code-scanning/sarif-support-for-code-scanning
This is the first step towards cleaner boundaries across the logical parts.
Mull miscompiles functions with variadic functions if they need to be mutated. As a workaround, Mull skips mutation of such functions: https://github.com/mull-project/mull/pull/977, but it should be solved eventually. --- This...
When the following code compiles: ```c int printf(const char *, ...); int main(int argc, char **argv) { static const void *jump_table[] = {&&label, &&label2}; goto *jump_table[argc - 1]; label: printf("label1\n");...
spdlog is great, but we have only used it for the fancy colors. With this move, we lose the colors and a few megabytes in the binary/package size.
Currently, the homebrew packages are broken. See https://github.com/mull-project/mull/issues/954#issuecomment-1022536260.
Currently, `mull-cxx` will extract doubled bitcode (e.g. for x96 and arm64) and `mull-runner` fails to read mutants from universal binary. Steps to reproduce: ``` $ echo "int main(int argc) {...
With https://github.com/mull-project/mull/pull/926 in place, we can now follow the same approach and ship more packages for different Linux distros. Which distros we should support? Debian, Fedora, ...?
This issue is supposed to be a place to discuss what needs to be implemented for version 1.0. These should include show-stoppers but can also include nice-to-haves. We'll need to...
Not really a report, but rather a question/suggestion. I am considering adding custom, user-provided templates for a `Dangerfile`, e.g.: ``` danger --template foobar.erb ``` or ```ruby # Dangerfile template 'foobar.erb'...