win32.mak has -cov=nn to enforce minimum coverage levels are preserved. We should have such in posix.mak as well. Ideally we'd find a simple mechanism by which both makefiles use the same numbers.
Comment #1 by public — 2015-01-28T12:54:29Z
That is a bit more effort-consuming than it may seem. Current win32.mak has hard-coded list of per-module required coverages which is not maintainable. Better approach would be to define Phobos-wide minimal coverage value and apply it to dflags - but that requires actually adding tests to many modules. Which is good on its own but will take time.
Comment #2 by andrei — 2015-01-28T16:48:37Z
A good start is to add it at its current minimum value, and improve it slowly over time. Could you please effect that?