Skip to content

Commit

Permalink
Fixed minor bug that caused the coverage runner to stop before all ch…
Browse files Browse the repository at this point in the history
…ild processes were terminated.
  • Loading branch information
stefan committed Feb 2, 2017
1 parent 87bb5bc commit 6ad8609
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Coverage/CoverageRunner.h
Original file line number Diff line number Diff line change
Expand Up @@ -440,9 +440,9 @@ struct CoverageRunner
{
std::cout << "Process exited with code: " << debugEvent.u.ExitProcess.dwExitCode << "." << std::endl;
}
continueDebugging = false;

processMap.erase(debugEvent.dwProcessId);
continueDebugging = processMap.empty() ? false : true;
}
break;

Expand Down
Binary file modified CoverageExt/CoverageExt.vsix
Binary file not shown.
Binary file modified CoverageExt/Resources/Coverage-x64.exe
Binary file not shown.
Binary file modified CoverageExt/Resources/Coverage-x86.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion CoverageExt/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="9A15C37B-BC55-41A6-8B2C-CD50D43BED43" Version="1.12" Language="en-US" Publisher="NubiloSoft" />
<Identity Id="9A15C37B-BC55-41A6-8B2C-CD50D43BED43" Version="1.13" Language="en-US" Publisher="NubiloSoft" />
<DisplayName>CPP Code Coverage Extension</DisplayName>
<Description xml:space="preserve">CPP Code Coverage Visual Studio Extension is an extension that allows you to see what has been covered by your unit tests.

Expand Down

0 comments on commit 6ad8609

Please sign in to comment.