| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 using System; | 4 using System; |
| 5 using System.Text; | 5 using System.Text; |
| 6 using System.Collections.Generic; | 6 using System.Collections.Generic; |
| 7 using EnvDTE; | 7 using EnvDTE; |
| 8 using EnvDTE80; | 8 using EnvDTE80; |
| 9 using Microsoft.VisualStudio.TestTools.UnitTesting; | 9 using Microsoft.VisualStudio.TestTools.UnitTesting; |
| 10 using Microsoft.VisualStudio.VCProjectEngine; | 10 using Microsoft.VisualStudio.VCProjectEngine; |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 config = TestUtilities.GetVCConfiguration(project, "Debug", platform
); | 48 config = TestUtilities.GetVCConfiguration(project, "Debug", platform
); |
| 49 config.AddPropertySheet("multiprocess.props"); | 49 config.AddPropertySheet("multiprocess.props"); |
| 50 config = TestUtilities.GetVCConfiguration(project, "Release", platfo
rm); | 50 config = TestUtilities.GetVCConfiguration(project, "Release", platfo
rm); |
| 51 config.AddPropertySheet("multiprocess.props"); | 51 config.AddPropertySheet("multiprocess.props"); |
| 52 | 52 |
| 53 // Add a second file | 53 // Add a second file |
| 54 project.ProjectItems.AddFromFile("test_file.cpp"); | 54 project.ProjectItems.AddFromFile("test_file.cpp"); |
| 55 | 55 |
| 56 dte_.Solution.Close(true); | 56 dte_.Solution.Close(true); |
| 57 | 57 |
| 58 CheckCompile(platform, false); | 58 CheckCompile(platform); |
| 59 } | 59 } |
| 60 } | 60 } |
| 61 } | 61 } |
| OLD | NEW |