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

Side by Side Diff: visual_studio/NativeClientVSAddIn/UnitTests/ProjectSettingsTest.cs

Issue 10830104: Changed VS add-in to use nacl-gdb (Closed) Base URL: https://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: IrtPath Property added Created 8 years, 4 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/PluginDebuggerHelper.cs ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 namespace UnitTests 5 namespace UnitTests
6 { 6 {
7 using System; 7 using System;
8 8
9 using EnvDTE; 9 using EnvDTE;
10 using EnvDTE80; 10 using EnvDTE80;
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 312
313 // General 313 // General
314 page = "ConfigurationGeneral"; 314 page = "ConfigurationGeneral";
315 AllConfigsAssertPropertyEquals(page, "OutDir", @"$(ProjectDir)$(ToolchainN ame)\", true); 315 AllConfigsAssertPropertyEquals(page, "OutDir", @"$(ProjectDir)$(ToolchainN ame)\", true);
316 AllConfigsAssertPropertyEquals( 316 AllConfigsAssertPropertyEquals(
317 page, "IntDir", @"$(ProjectDir)Intermediate\$(ToolchainName)\", true); 317 page, "IntDir", @"$(ProjectDir)Intermediate\$(ToolchainName)\", true);
318 AllConfigsAssertPropertyEquals(page, "ToolchainName", "newlib", true); 318 AllConfigsAssertPropertyEquals(page, "ToolchainName", "newlib", true);
319 AllConfigsAssertPropertyEquals(page, "PlatformToolset", "win_x86_$(Toolcha inName)", true); 319 AllConfigsAssertPropertyEquals(page, "PlatformToolset", "win_x86_$(Toolcha inName)", true);
320 AllConfigsAssertPropertyEquals(page, "TargetArchitecture", "x86_64", true) ; 320 AllConfigsAssertPropertyEquals(page, "TargetArchitecture", "x86_64", true) ;
321 AllConfigsAssertPropertyEquals(page, "VSNaClSDKRoot", @"$(NACL_SDK_ROOT)\" , false); 321 AllConfigsAssertPropertyEquals(page, "VSNaClSDKRoot", @"$(NACL_SDK_ROOT)\" , false);
322 AllConfigsAssertPropertyEquals(page, "NaClManifestPath", string.Empty, fal se);
323 AllConfigsAssertPropertyEquals(
324 page, "NaClIrtPath", @"$(VSNaClSDKRoot)\tools\irt_x86_64.nexe", false) ;
322 325
323 // Debugging 326 // Debugging
324 page = "WindowsLocalDebugger"; 327 page = "WindowsLocalDebugger";
325 AllConfigsAssertPropertyEquals( 328 AllConfigsAssertPropertyEquals(
326 page, "LocalDebuggerCommand", @"$(CHROME_PATH)", true); 329 page, "LocalDebuggerCommand", @"$(CHROME_PATH)", true);
327 TestUtilities.AssertPropertyEquals( 330 TestUtilities.AssertPropertyEquals(
328 debug_, 331 debug_,
329 page, 332 page,
330 "LocalDebuggerCommandArguments", 333 "LocalDebuggerCommandArguments",
331 "--enable-nacl-debug --no-sandbox localhost:5103", 334 "--enable-nacl-debug --no-sandbox localhost:5103",
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
464 ignoreCase); 467 ignoreCase);
465 TestUtilities.AssertPropertyContains( 468 TestUtilities.AssertPropertyContains(
466 release_, 469 release_,
467 pageName, 470 pageName,
468 propertyName, 471 propertyName,
469 expectedValue, 472 expectedValue,
470 ignoreCase); 473 ignoreCase);
471 } 474 }
472 } 475 }
473 } 476 }
OLDNEW
« no previous file with comments | « visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/PluginDebuggerHelper.cs ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698