开发者

VsPerfMon.exe and VsTestHost.exe Processes Hang when Run by MSTest from CruiseControl.NET

I'm using CruiseControl.NET with MSTest to build my vs2008 project and run my unit tests.

If I run the tests from Visual Studio 2008, they work perfectly. However, when the tests are started by CruiseControl, the VsPerfMon.exe and VsTestHost.exe processes hang until i end them from the taskmanager. This means that cruisecontrol itself hangs also and i never get a result for my build in cruisecontrol.

Does anybod开发者_如何学Goy have any idea what might be the solution to my problem?

Thanks,

D


This sounds like they may be waiting for user input? - You could try running the msbuild task (or NAnt if thats what you use) on the server yourself to check

Also check what user account the CruiseControl.Net service is running as and maybe switch it to your user account and see if that changes it - that way you would know if its related to account permissions etc


check this http://social.msdn.microsoft.com/Forums/pl-PL/tfsbuild/thread/af706a24-d47a-4a90-b3e6-beb5691f3aa0 have not tested yet...


Possible solution would be to add a AfterCompile target to kill the VSPerfCmd before the tests run.

<Target Name="AfterCompile">
    <Message Text ="Shutdown the vsperfmon" />
    <Exec Command='"C:\Program Files\Microsoft Visual Studio 9.0\Team Tools\Performance Tools\VSPerfCmd.exe" /shutdown' ContinueOnError="true" />
</Target>
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜