How to use dmd code coverage

2021-11-11 Thread forkit via Digitalmars-d-learn
// -- module test; import std.stdio; void main() { writeln("Hello World!"); } // --- dmd test.d -cov ..but no .lst file anywhere to be found. Huh! I don't get it.

Re: How to use dmd code coverage

2021-11-11 Thread Ali Çehreli via Digitalmars-d-learn
On 11/11/21 1:37 PM, forkit wrote: dmd test.d -cov ...but no .lst file anywhere to be found. Huh! I don't get it. Please run the program! :) Ali

Re: How to use dmd code coverage

2021-11-11 Thread forkit via Digitalmars-d-learn
On Thursday, 11 November 2021 at 21:40:33 UTC, Ali Çehreli wrote: On 11/11/21 1:37 PM, forkit wrote: dmd test.d -cov ...but no .lst file anywhere to be found. Huh! I don't get it. Please run the program! :) Ali oh! that kinda makes sense, now that I think of it ;-)

Re: How to use dmd code coverage

2021-11-11 Thread foxit via Digitalmars-d-learn
On Thursday, 11 November 2021 at 22:35:21 UTC, forkit wrote: On Thursday, 11 November 2021 at 21:40:33 UTC, Ali Çehreli wrote: On 11/11/21 1:37 PM, forkit wrote: dmd test.d -cov ...but no .lst file anywhere to be found. Huh! I don't get it. Please run the program! :) Ali oh! that kinda m

Re: How to use dmd code coverage

2021-11-12 Thread Dr Machine Code via Digitalmars-d-learn
On Thursday, 11 November 2021 at 23:51:42 UTC, foxit wrote: On Thursday, 11 November 2021 at 22:35:21 UTC, forkit wrote: [...] Actually, the reason I got soo confused is clear to me now. I have my own GUI IDE, which I wrote myself (winforms/C#) cause I got so fed up with creating/saving

Re: How to use dmd code coverage

2021-11-12 Thread forkit via Digitalmars-d-learn
On Friday, 12 November 2021 at 19:32:31 UTC, Dr Machine Code wrote: On Thursday, 11 November 2021 at 23:51:42 UTC, foxit wrote: On Thursday, 11 November 2021 at 22:35:21 UTC, forkit wrote: [...] Actually, the reason I got soo confused is clear to me now. I have my own GUI IDE, which I wr

Re: How to use dmd code coverage

2021-11-12 Thread Imperatorn via Digitalmars-d-learn
On Friday, 12 November 2021 at 22:27:48 UTC, forkit wrote: On Friday, 12 November 2021 at 19:32:31 UTC, Dr Machine Code wrote: On Thursday, 11 November 2021 at 23:51:42 UTC, foxit wrote: [...] is your IDE more of a REPL thing? It's a custom IDE for me, that I wrote using Winforms/C# (devel