Re: code coverage under Linux

2008-11-24 Thread Sean Kelly
== Quote from Walter Bright ([EMAIL PROTECTED])'s article > Amaury wrote: > > Doesn't create a sieve.lst file... why ? > Looks like the problem is in libdruntime.a. It'll be fixed in the next > update. I believe I've fixed this in the druntime svn trunk (still have to merge the changes to the D 1.

Re: code coverage under Linux

2008-11-24 Thread Amaury
Walter Bright Wrote: > Amaury wrote: > > Doesn't create a sieve.lst file... why ? > > Looks like the problem is in libdruntime.a. It'll be fixed in the next > update. It would be great and useful. Thanks Amaury

Re: code coverage under Linux

2008-11-23 Thread Walter Bright
Amaury wrote: Doesn't create a sieve.lst file... why ? Looks like the problem is in libdruntime.a. It'll be fixed in the next update.

Re: code coverage under Linux

2008-11-22 Thread Gide Nwawudu
On Fri, 21 Nov 2008 12:38:58 -0500, Amaury <[EMAIL PROTECTED]> wrote: >My DMD version is : Digital Mars D Compiler v1.030 >What do you mean by my build option? the options to build my .d? >I'm just trying the simple example of sieve : > >dmd -cov sieve.d >./sieve > >no .lst is created. Works for

Re: code coverage under Linux

2008-11-21 Thread Amaury
My DMD version is : Digital Mars D Compiler v1.030 What do you mean by my build option? the options to build my .d? I'm just trying the simple example of sieve : dmd -cov sieve.d ./sieve no .lst is created. Thx Amaury ps : note that I'm french and working to translate the "D 1.0 overview" in t

Re: code coverage under Linux

2008-11-21 Thread Walter Bright
Amaury wrote: Walter Bright Wrote: Amaury wrote: Hi, I have already tried this and it doesn't work, I also tried with a sudo command... Do I need something else than just dmd ? Amaury No, you shouldn't need anything other than dmd. So it won't work!? :'( I have no idea why it isn't workin

Re: code coverage under Linux

2008-11-21 Thread Sean Kelly
Amaury wrote: Walter Bright Wrote: Amaury wrote: Hi, I have already tried this and it doesn't work, I also tried with a sudo command... Do I need something else than just dmd ? Amaury No, you shouldn't need anything other than dmd. So it won't work!? :'( What version of DMD are you using?

Re: code coverage under Linux

2008-11-21 Thread Amaury
Walter Bright Wrote: > Amaury wrote: > > Hi, I have already tried this and it doesn't work, I also tried with > > a sudo command... Do I need something else than just dmd ? Amaury > > No, you shouldn't need anything other than dmd. So it won't work!? :'(

Re: code coverage under Linux

2008-11-20 Thread Walter Bright
Amaury wrote: Hi, I have already tried this and it doesn't work, I also tried with a sudo command... Do I need something else than just dmd ? Amaury No, you shouldn't need anything other than dmd.

Re: code coverage under Linux

2008-11-20 Thread Amaury
Hi, I have already tried this and it doesn't work, I also tried with a sudo command... Do I need something else than just dmd ? Amaury Olli Aalto Wrote: > Amaury wrote: > > Hello, > > I'm looking for testing the code coverage fonctionnality with dmd under > > Ubuntu but it seems no to work. > >

Re: code coverage under Linux

2008-11-19 Thread Olli Aalto
Amaury wrote: Hello, I'm looking for testing the code coverage fonctionnality with dmd under Ubuntu but it seems no to work. The command : $ dmd sieve -cov $ sieve Doesn't create a sieve.lst file... why ? try: dmd -cov sieve.d ./sieve Works for me. O.

code coverage under Linux

2008-11-19 Thread Amaury
Hello, I'm looking for testing the code coverage fonctionnality with dmd under Ubuntu but it seems no to work. The command : $ dmd sieve -cov $ sieve Doesn't create a sieve.lst file... why ? Thanks Amaury