Skip to content

Commit

Permalink
Fix for issue microsoft#241 (microsoft#242)
Browse files Browse the repository at this point in the history
 Fix for issue microsoft#241
  • Loading branch information
Faizan2304 authored Nov 23, 2016
1 parent dca4c89 commit 592a213
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Microsoft.TestPlatform.Build/Tasks/VSTestTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,9 @@ public override bool Execute()
{
Console.WriteLine("Test run for {0}({1})", this.TestFileFullPath, this.VSTestFramework);
}
vsTestForwardingApp.Execute();
return true;

int returnCode = vsTestForwardingApp.Execute();
return returnCode == 0 ? true : false;
}

private string AddDoubleQuotes(string x)
Expand Down

0 comments on commit 592a213

Please sign in to comment.