~nunit-core/nunitv2/2.5

« back to all changes in this revision

Viewing changes to src/ClientUtilities/util/Services/DomainManager.cs

  • Committer: Charlie Poole
  • Date: 2010-11-16 21:14:32 UTC
  • Revision ID: charlie@nunit.org-20101116211432-qeayxv8utkk7d6d1
Increase timeout values for test under TeamCity

Show diffs side-by-side

added added

removed removed

Lines of Context:
173
173
 
174
174
                thread = new Thread(new ThreadStart(UnloadOnThread));
175
175
                thread.Start();
176
 
                if (!thread.Join(20000))
 
176
                if (!thread.Join(30000))
177
177
                {
178
178
                    log.Error("Unable to unload AppDomain {0}, Unload thread timed out", domain.FriendlyName);
179
179
                    thread.Abort();