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

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

Issue 12207169: [VS Addin] Fix typo in test code for parallel builds. (Closed) Base URL: http://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 7 years, 10 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: visual_studio/NativeClientVSAddIn/UnitTests/CompileParallelTest.cs
diff --git a/visual_studio/NativeClientVSAddIn/UnitTests/CompileParallelTest.cs b/visual_studio/NativeClientVSAddIn/UnitTests/CompileParallelTest.cs
index d8df3dc135e9f03d0c1c107ea94e6c7c9584f2d4..c15bcb8dc6e81cbee9d96653afa2163ae13456e9 100644
--- a/visual_studio/NativeClientVSAddIn/UnitTests/CompileParallelTest.cs
+++ b/visual_studio/NativeClientVSAddIn/UnitTests/CompileParallelTest.cs
@@ -39,9 +39,9 @@ namespace UnitTests
[TestMethod]
public void CheckParallelCompile()
{
- string platform = TestUtilities.NaClProjectUniqueName;
+ string platform = Strings.NaCl64PlatformName;
dte_.Solution.Open(SolutionName_);
- Project project = dte_.Solution.Projects.Item(platform);
+ Project project = dte_.Solution.Projects.Item(TestUtilities.NaClProjectUniqueName);
// Add property sheet that enables multiprocessing
VCConfiguration config;
@@ -56,7 +56,7 @@ namespace UnitTests
dte_.Solution.Close(true);
- CheckCompile(Strings.NaCl64PlatformName, false);
+ CheckCompile(platform, false);
}
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698