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

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

Issue 11266051: Add PNaCl support for VS addin. (Closed) Base URL: http://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: fix nits and tests 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/ProjectSettingsTest.cs
diff --git a/visual_studio/NativeClientVSAddIn/UnitTests/ProjectSettingsTest.cs b/visual_studio/NativeClientVSAddIn/UnitTests/ProjectSettingsTest.cs
index ec652062b0d1a5f30fae4eaf5f8d91afaeb8d2ef..5cc6b431ad8bb5d252ee66dbaef5d6104aedb787 100644
--- a/visual_studio/NativeClientVSAddIn/UnitTests/ProjectSettingsTest.cs
+++ b/visual_studio/NativeClientVSAddIn/UnitTests/ProjectSettingsTest.cs
@@ -110,6 +110,17 @@ namespace UnitTests
}
/// <summary>
+ /// Test method to check that the NaCl platform compiles a test project.
+ /// </summary>
+ [TestMethod]
+ public void CheckPNaClCompile()
+ {
+ string naclPlatform = NativeClientVSAddIn.Strings.PNaClPlatformName;
+ TryCompile(naclSolutionEmptyInitialization, "Debug", naclPlatform);
+ TryCompile(naclSolutionEmptyInitialization, "Release", naclPlatform);
+ }
+
+ /// <summary>
/// Test method to check that the Pepper platform compiles a test project.
/// </summary>
[TestMethod]

Powered by Google App Engine
This is Rietveld 408576698