Re: [Ironruby-core] code coverage of ironruby code

2009-09-23 Thread Jim Deville
@rubyforge.org Subject: Re: [Ironruby-core] code coverage of ironruby code rcov can spit out junit xml I'm sure it can spit out the xml we want. Ideally rcov would be ported and usable for both C# and ruby code when executing tests. Seeing how many people are trying cucumber on ironruby it could

Re: [Ironruby-core] code coverage of ironruby code

2009-09-23 Thread Ivan Porto Carrero
rcov can spit out junit xmlI'm sure it can spit out the xml we want. Ideally rcov would be ported and usable for both C# and ruby code when executing tests. Seeing how many people are trying cucumber on ironruby it could be a good thing to have early on. --- Met vriendelijke groeten - Best regar

Re: [Ironruby-core] code coverage of ironruby code

2009-09-23 Thread Thibaut Barrère
Maybe we'd have to mix tools to munge the profiling data and provide a uniformised set in return. Like: - vsinstr + a port of rcov for windows - mono profiler + port of rcov again on mac / linux just a thought, but from a user perspective I am definitely interested to see a mix of C# and Ruby stac

Re: [Ironruby-core] code coverage of ironruby code

2009-09-23 Thread Tomas Matousek
If you want to get coverage numbers for C# code you should be able to do: set PERF_TOOLS=%VSINSTALLDIR%\Team Tools\Performance Tools set DSTDIR=an empty directory to store dlls you want to instrument to (the tests must load them from here) # instrument each dll for which you want to get the cove

Re: [Ironruby-core] code coverage of ironruby code

2009-09-23 Thread Jim Deville
Both of those libraries have integration with rcov, so if you were to look into porting that library it might help. Otherwise we may need to look into writing something custom. From: Ivan Porto Carrero Sent: September 23, 2009 2:26 AM To: ironruby-core Subjec