Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(801)

Unified Diff: visual_studio/NativeClientVSAddIn/UnitTests/PluginDebuggerGDBTest.cs

Issue 11367026: [VS Addin] Add PNaCl configs to examples (Closed) Base URL: http://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: visual_studio/NativeClientVSAddIn/UnitTests/PluginDebuggerGDBTest.cs
diff --git a/visual_studio/NativeClientVSAddIn/UnitTests/PluginDebuggerGDBTest.cs b/visual_studio/NativeClientVSAddIn/UnitTests/PluginDebuggerGDBTest.cs
index 8e4d69c6fe69f2d3b5951679ea18f698d53cce61..663f29a0aa569e3816ab67c3a2a3321045998723 100644
--- a/visual_studio/NativeClientVSAddIn/UnitTests/PluginDebuggerGDBTest.cs
+++ b/visual_studio/NativeClientVSAddIn/UnitTests/PluginDebuggerGDBTest.cs
@@ -13,7 +13,7 @@ namespace UnitTests
using Microsoft.VisualStudio.TestTools.UnitTesting;
using NativeClientVSAddIn;
-
+
/// <summary>
/// This is a test class for PluginDebuggerGDBTest and is intended
/// to contain all PluginDebuggerGDB Unit Tests
@@ -296,7 +296,7 @@ namespace UnitTests
Assert.IsTrue(
gdbCommands.Exists(s => s.Contains(functionName)),
"Function breakpoint not properly set");
-
+
// Note fake assembly string should be double escaped when passed to gdb.
Assert.IsTrue(
gdbCommands.Exists(s => s.Contains(functionName)),
@@ -392,7 +392,7 @@ namespace UnitTests
1, 1, string.Empty, Strings.ChromeRendererFlag, Strings.NaClProcessName);
ProcessInfo goodProc = new ProcessInfo(
1, 1, string.Empty, Strings.NaClLoaderFlag, Strings.NaClProcessName);
-
+
string goodMainChromeFlags = Strings.NaClDebugFlag;
string badMainChromeFlags = string.Format(
Strings.PepperProcessPluginFlagFormat, target.targetNexe_);

Powered by Google App Engine
This is Rietveld 408576698