nunit-core team mailing list archive
-
nunit-core team
-
Mailing list archive
-
Message #00736
[Bug 605793] Re: Multiple instances of Nunit runners, which use nunit-agent, can not be run in parallel.
** Changed in: nunitv2
Status: In Progress => Fix Committed
--
Multiple instances of Nunit runners, which use nunit-agent, can not be run in parallel.
https://bugs.launchpad.net/bugs/605793
You received this bug notification because you are a member of NUnit
Developers, which is subscribed to NUnit V2.
Status in NUnit V2 Test Framework: Fix Committed
Bug description:
An instance of an Nunit runner, which uses nunit-agent to run tests, is preventing any other parallel instance to execute tests using nunit-agent.
If the other instance uses /process=Separate, it fails with "No fixture found".
If it uses /process=Multiple, it fails with the following exception:
System.NullReferenceException: Der Objektverweis wurde nicht auf eine Objektinstanz festgelegt.
bei NUnit.Core.ProxyTestRunner.CountTestCases(ITestFilter filter)
bei NUnit.Util.AggregatingTestRunner.CountTestCases(ITestFilter filter)
bei NUnit.Util.AggregatingTestRunner.Run(EventListener listener, ITestFilter filter)
bei NUnit.ConsoleRunner.ConsoleUi.Execute(ConsoleOptions options)
bei NUnit.ConsoleRunner.Runner.Main(String[] args)
Steps to reproduce:
- for any test assembly start two instances of nunit-console setting /process=Separate or /process=Multiple
References