CannotUnloadAppDomain Mbunit 和 CCNET
自从我们设置以来,我们的 CCNET 构建系统一直运行良好。最近,我们搬到了另一个房间并更改了系统上的一个 IP 地址,我们从 NCover 运行的 MbUnit 收到 CannotUnloadAppDomainException。我检查了我们的 SVN 日志以确保没有发生任何更改。有没有人以前经历过这种情况或者有任何想法我应该寻找什么?
Our CCNET build system has been running just fine since we set it up. Recently we moved to another room and changed one IP address on our system and we are getting CannotUnloadAppDomainException from MbUnit which is run from NCover. I have checked our SVN logs to make sure there were no changes and there aren't. Has anyone experienced this before or have any ideas what I should be looking for?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Gallio 在 IsolatedAppDomain 默认模式。该错误表明 AppDomain 沙箱无法卸载,可能是由于涉及资源锁定、多线程竞争条件或内存不足问题或堆栈溢出等严重错误。
您当然需要更多信息来诊断问题的根本原因。你可以做什么:
Gallio runs your tests in IsolatedAppDomain mode by default. The error indicates that the AppDomain sandbox cannot be unloaded probably due to a critical error involving resource lock, multi-thread race condition, or something like an out of memory issue or a stack overflow.
You certainly need more information to diagnose the root cause of the problem. What you can do: