As the title says. Meson seem to be very good at only recompiling those files that has been changed and so on, but when it comes to running the tests it seem that it always run all the tests despite no changes were made that triggered even relinking of the executable.
My setup is that I have a separate executable for each unit. I want meson to only run those that were affected by any changes I've made.
As the title says. Meson seem to be very good at only recompiling those files that has been changed and so on, but when it comes to running the tests it seem that it always run all the tests despite no changes were made that triggered even relinking of the executable.
My setup is that I have a separate executable for each unit. I want meson to only run those that were affected by any changes I've made.
Share Improve this question asked Feb 4 at 9:02 skykingskyking 14.4k2 gold badges37 silver badges61 bronze badges 01 Answer
Reset to default 1I want meson to only run those that were affected by any changes I've made.
This is impossible to know, tests can depend on anything.
It has no way to only run newly compiled tests.