Re: unit test broken [DUB bug?]

2021-12-16 Thread Andre Pany via Digitalmars-d-learn
On Monday, 13 December 2021 at 18:24:07 UTC, Andre Pany wrote: On Sunday, 12 December 2021 at 05:54:44 UTC, Chris Katko wrote: Running 64-bit Linux ``` dmd --version DMD64 D Compiler v2.098.0-beta.2 [...] I really recommend always using dub configurations, especially when you want to use

Re: unit test broken [DUB bug?]

2021-12-13 Thread Steven Schveighoffer via Digitalmars-d-learn
On 12/12/21 12:54 AM, Chris Katko wrote: Running 64-bit Linux ``` dmd --version DMD64 D Compiler v2.098.0-beta.2 dub --version DUB version 1.27.0-beta.2, built on SepĀ  7 2021 ``` the following code 'compiles' in one project. ```d unittest { gasdindgaslkdgansklnasgdlknaglkgansklsdg; } void

Re: unit test broken [DUB bug?]

2021-12-13 Thread Andre Pany via Digitalmars-d-learn
On Sunday, 12 December 2021 at 05:54:44 UTC, Chris Katko wrote: Running 64-bit Linux ``` dmd --version DMD64 D Compiler v2.098.0-beta.2 [...] I really recommend always using dub configurations, especially when you want to use unit tests. The name of the first configuration doesn't matter.

Re: unit test broken [DUB bug?]

2021-12-12 Thread russhy via Digitalmars-d-learn
You are running the beta version of the compiler, and an older version of LDC2 I'd first try to update them to make sure you aren't missing any bug fixes

unit test broken [DUB bug?]

2021-12-11 Thread Chris Katko via Digitalmars-d-learn
Running 64-bit Linux ``` dmd --version DMD64 D Compiler v2.098.0-beta.2 dub --version DUB version 1.27.0-beta.2, built on Sep 7 2021 ``` the following code 'compiles' in one project. ```d unittest { gasdindgaslkdgansklnasgdlknaglkgansklsdg; } void main(){} // compiles, links, and 'runs unit