Thread overview
Building and Running Unittests for a Specific Phobos Package Only
Oct 15, 2015
Nordlöw
Oct 15, 2015
Marc Schütz
Oct 15, 2015
Nordlöw
October 15, 2015
Is there a Make-target for building and running the unittests for a specific Phobos package, say `std.range`, only?
October 15, 2015
On Thursday, 15 October 2015 at 10:07:29 UTC, Nordlöw wrote:
> Is there a Make-target for building and running the unittests for a specific Phobos package, say `std.range`, only?

make -f posix.mak std/range.test
October 15, 2015
On Thursday, 15 October 2015 at 13:12:32 UTC, Marc Schütz wrote:
> make -f posix.mak std/range.test

Thx