December 26, 2019
On Thursday, 26 December 2019 at 10:20:27 UTC, berni44 wrote:
> On Sunday, 22 December 2019 at 15:23:32 UTC, Martin Nowak wrote:
>> As usual please report any bugs at
>> https://issues.dlang.org
>
> Not sure, if this is a bug, but --DRT-testmode=run-main seems to have no effect here.
>
> Example:
>
> ---
> import std.stdio;
>
> unittest
> {
>     assert(1==1);
> }
>
> void main(string[] argv)
> {
>     writeln("X");
> }
> ---
>
> $> dmd -unittest -g -run test.d
> 1 unittests passed
> $> dmd -unittest --DRT-testmode=run-main -g -run test.d

DRT switches are runtime switches

./test --DRT-testmode=run-main

What you did was to pass the DRT switch to DMD itself.

-Steve


December 26, 2019
On Thursday, 26 December 2019 at 14:16:50 UTC, Steven Schveighoffer wrote:
> DRT switches are runtime switches
>
> ./test --DRT-testmode=run-main

Aaah. Did not know about runtime switches...

December 30, 2019
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

Release candidate is live now.
December 30, 2019

On 30/12/2019 12:07, Martin Nowak wrote:
> 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
> 
> Release candidate is live now.

The windows build is still considered "dirty", i.e.it reports version DMD32 D Compiler v2.090.0-rc.1-dirty.

Is there something that can be done about that?
January 01, 2020
On Monday, 30 December 2019 at 22:41:51 UTC, Rainer Schuetze wrote:
> The windows build is still considered "dirty", i.e.it reports version DMD32 D Compiler v2.090.0-rc.1-dirty.
>
> Is there something that can be done about that?

Not sure, if that's the reason, but:

Merge https://github.com/dlang/phobos/pull/7331. This PR is allready merged into master (the wrong target was my mistake) and should have been merged into stable. This PR corrects this. (It fixes an issue on machines, where real==double).
1 2 3
Next ›   Last »