Currently I have some tests that are blamed to not catch bugs very well. I want to do mutation testing in order to detect them (and prevent from adding new useless ones), but without the time-inefficient loop: change the code -> recompile -> run tests -> change the code -> recompile -> run tests... etc.
Initially I wanted to mutate somehow binary elf files directly (no recompilation), but as later posts suggested, it makes no sense.