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

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

Issue 69343013: [VS AddIn] Fix default library paths. (Closed) Base URL: https://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 7 years, 1 month 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/CompileTest.cs
diff --git a/visual_studio/NativeClientVSAddIn/UnitTests/CompileTest.cs b/visual_studio/NativeClientVSAddIn/UnitTests/CompileTest.cs
index dc301c1da92e5486560809b89d8663db2b405908..629ce3efe767498f41584ae4690033802d30346c 100644
--- a/visual_studio/NativeClientVSAddIn/UnitTests/CompileTest.cs
+++ b/visual_studio/NativeClientVSAddIn/UnitTests/CompileTest.cs
@@ -38,7 +38,7 @@ namespace UnitTests
[TestMethod]
public void CheckNaCl64Compile()
{
- CheckCompile(Strings.NaCl64PlatformName, false);
+ CheckCompile(Strings.NaCl64PlatformName);
}
/// <summary>
@@ -52,7 +52,7 @@ namespace UnitTests
{
Assert.Inconclusive();
}
- CheckCompile(Strings.NaClARMPlatformName, false);
+ CheckCompile(Strings.NaClARMPlatformName);
}
/// <summary>
@@ -61,7 +61,7 @@ namespace UnitTests
[TestMethod]
public void CheckPepperCompile()
{
- CheckCompile(Strings.PepperPlatformName, true);
+ CheckCompile(Strings.PepperPlatformName);
}
/// <summary>
@@ -75,7 +75,7 @@ namespace UnitTests
{
Assert.Inconclusive();
}
- CheckCompile(Strings.PNaClPlatformName, false);
+ CheckCompile(Strings.PNaClPlatformName);
}
}

Powered by Google App Engine
This is Rietveld 408576698