On Sunday, 22 December 2019 at 15:23:32 UTC, Martin Nowak wrote:
Glad to announce the first beta for the 2.090.0 release, ♥ to the 48 contributors.

http://dlang.org/download.html#dmd_beta
http://dlang.org/changelog/2.090.0.html

As usual please report any bugs at
https://issues.dlang.org

-Martin

I've gotten very used to running my app via

    dub run --compiler=dmd --build=unittest

in order to, with short iterations, run tests and the application at the same time.

Changing this behaviour via

https://dlang.org/changelog/2.090.0.html#unittest-default

is, to me, an usually disruptive change.

I tried changing to

dub run --compiler=dmd --build=unittest -- --DRT-testmode=run-main

but it still doesn't run the application after the unittests are run.

Have I missed something or is this a known problem with dub? If so, do I have any alternative to brute-forcing the problem with

    dub run --compiler=dmd --build=unittest
    dub run --compiler=dmd --build=debug

which, for me, doubles my development iteration time.

Reply via email to