Skip to content

Commit

Permalink
Another ongoing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mterwoord committed Feb 14, 2016
1 parent d34e668 commit c2697b0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Tests/Cosmos.TestRunner.Core/Engine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ public bool Execute()
OutputHandler.ExecutionStart();
try
{
var xResult = true;
foreach (var xConfig in GetRunConfigurations())
{
OutputHandler.RunConfigurationStart(xConfig);
try
{
var xResult = true;
foreach (var xAssemblyFile in mKernelsToRun)
{
mBaseWorkingDirectory = Path.Combine(Path.GetDirectoryName(typeof(Engine).Assembly.Location), "WorkingDirectory");
Expand All @@ -74,7 +74,6 @@ public bool Execute()

xResult &= ExecuteKernel(xAssemblyFile, xConfig);
}
return xResult;
}
catch (Exception e)
{
Expand All @@ -85,10 +84,12 @@ public bool Execute()
OutputHandler.RunConfigurationEnd(xConfig);
}
}
return xResult;
}
catch (Exception E)
{
OutputHandler.UnhandledException(E);
return false;
}
finally
{
Expand Down

0 comments on commit c2697b0

Please sign in to comment.