| Index: visual_studio/NativeClientVSAddIn/UnitTests/PluginDebuggerHelperTest.cs
|
| diff --git a/visual_studio/NativeClientVSAddIn/UnitTests/PluginDebuggerHelperTest.cs b/visual_studio/NativeClientVSAddIn/UnitTests/PluginDebuggerHelperTest.cs
|
| index 07356467113bcbc5cf05171eb57bf741e7d2c468..c63e83595982a1537b45a7a71404cd1be709d312 100644
|
| --- a/visual_studio/NativeClientVSAddIn/UnitTests/PluginDebuggerHelperTest.cs
|
| +++ b/visual_studio/NativeClientVSAddIn/UnitTests/PluginDebuggerHelperTest.cs
|
| @@ -74,6 +74,15 @@ namespace UnitTests
|
| public void TestSetup()
|
| {
|
| dte_ = TestUtilities.StartVisualStudioInstance();
|
| + try
|
| + {
|
| + TestUtilities.AssertAddinLoaded(dte_, NativeClientVSAddIn.Strings.AddInName);
|
| + }
|
| + catch
|
| + {
|
| + TestUtilities.CleanUpVisualStudioInstance(dte_);
|
| + throw;
|
| + }
|
| }
|
|
|
| /// <summary>
|
| @@ -225,7 +234,11 @@ namespace UnitTests
|
| // Fake the list of processes on the system.
|
| processResults.ProcessList.Add(
|
| new ProcessInfo(
|
| - currentProcId, currentProcId, string.Empty, string.Empty, Strings.ChromeProcessName));
|
| + currentProcId,
|
| + currentProcId,
|
| + string.Empty,
|
| + Strings.NaClDebugFlag,
|
| + Strings.ChromeProcessName));
|
| processResults.ProcessList.Add(
|
| new ProcessInfo(1, currentProcId, string.Empty, string.Empty, "MyParentProcess"));
|
| processResults.ProcessList.Add(
|
|
|