Index: DamEngine/trunk/src/Deltares.DamEngine.IntegrationTests/IntegrationTests/OperationalMultiCoreTests.cs =================================================================== diff -u -r5790 -r5792 --- DamEngine/trunk/src/Deltares.DamEngine.IntegrationTests/IntegrationTests/OperationalMultiCoreTests.cs (.../OperationalMultiCoreTests.cs) (revision 5790) +++ DamEngine/trunk/src/Deltares.DamEngine.IntegrationTests/IntegrationTests/OperationalMultiCoreTests.cs (.../OperationalMultiCoreTests.cs) (revision 5792) @@ -86,14 +86,15 @@ } [Test, Category(Categories.MultiCore)] - [Category(Categories.WorkInProgress)] // expected real results should be 16, but only 8 are found [TestCase(4)] [TestCase(8)] [TestCase(16)] // 16 relevant combinations public void OperationalBeeSwarmWithXmlInputFile(int maxCores) { const string inputFilename = "InputForDebuggingBeeSwarm.xml"; - TestCompareMultiCoreTo1CoreOperational(maxCores, workDir, inputFilename, 8, 16, 16); + // Half of the locations (starting with PU0110+20) are not calculated because uplift does not occur. That's why the + // number of real results (8) is half less than the number of calculated locations (16). + TestCompareMultiCoreTo1CoreOperational(maxCores, workDir, inputFilename, 8, 16, 8); } }