free_mutant/TODO

38 lines
1.4 KiB
Text
Raw Normal View History

2012-12-19 12:51:41 -05:00
Code:
* Test mutant with dynamically created zombie.
* Fix ugly code within default parameters
AST:
* Fix the rubinius AST to allow setting @vcall_style variable in Rubinius::AST::Send nodes.
Mutations:
* Add some kind of a "do not touch me object" that raises on all messages.
It can be used to make sure each literal value is touched.
2012-12-29 08:17:46 -05:00
* Replace nil or add "do not touch me object" to literal mutations.
2012-12-19 12:51:41 -05:00
* Mutate options on Regexp literals
* Add mutations for dynamic regexp symbol and string literals
2012-12-29 08:17:46 -05:00
* Mutate "def foo; bar; end" to "def foo; self; end"?
* Emit negative and positive mutations
* Mutate Block catch "def foo(&block)" and block pass "foo(&block)"
* Mutate super arguments just like send arguments
Example of a negative mutation:
Mutations on local variables and arguments prefixed with an underscore would be emitted as
negative mutations that must be alive.
2012-12-29 08:17:46 -05:00
Loader:
* Make sure loader does not change visibility of injected mutants
2012-12-19 12:51:41 -05:00
Killers:
* Aggregate warnings on missing spec files
* Add a general master <=> killer IPC interface. So different strategies of isolation
(fork, vs jruby runtime creation) will work without big impact.
Matcher:
* Allow matches on attr_reader with literal name argument(s)?
* Allow matches on define_method with literal name argument?
jruby-support:
* Hook melbourne via ffi
* Create a runtime per mutation to kill mutations in isolation