| OLD | NEW | 
|---|
| 1 // Copyright 2012 Google Inc. All Rights Reserved. | 1 // Copyright 2012 Google Inc. All Rights Reserved. | 
| 2 // | 2 // | 
| 3 // Licensed under the Apache License, Version 2.0 (the "License"); | 3 // Licensed under the Apache License, Version 2.0 (the "License"); | 
| 4 // you may not use this file except in compliance with the License. | 4 // you may not use this file except in compliance with the License. | 
| 5 // You may obtain a copy of the License at | 5 // You may obtain a copy of the License at | 
| 6 // | 6 // | 
| 7 //     http://www.apache.org/licenses/LICENSE-2.0 | 7 //     http://www.apache.org/licenses/LICENSE-2.0 | 
| 8 // | 8 // | 
| 9 // Unless required by applicable law or agreed to in writing, software | 9 // Unless required by applicable law or agreed to in writing, software | 
| 10 // distributed under the License is distributed on an "AS IS" BASIS, | 10 // distributed under the License is distributed on an "AS IS" BASIS, | 
| (...skipping 23 matching lines...) Expand all  Loading... | 
| 34 // Name of the test DLLs and PDBs. These exist in the output directory, and | 34 // Name of the test DLLs and PDBs. These exist in the output directory, and | 
| 35 // again in the test_data directory. | 35 // again in the test_data directory. | 
| 36 extern const wchar_t kTestDllName[]; | 36 extern const wchar_t kTestDllName[]; | 
| 37 extern const wchar_t kTestDllPdbName[]; | 37 extern const wchar_t kTestDllPdbName[]; | 
| 38 extern const wchar_t kTestDllName64[]; | 38 extern const wchar_t kTestDllName64[]; | 
| 39 extern const wchar_t kTestDllPdbName64[]; | 39 extern const wchar_t kTestDllPdbName64[]; | 
| 40 | 40 | 
| 41 // Name of the integrations tests DLLs and PDBs. | 41 // Name of the integrations tests DLLs and PDBs. | 
| 42 extern const wchar_t kIntegrationTestsDllName[]; | 42 extern const wchar_t kIntegrationTestsDllName[]; | 
| 43 extern const wchar_t kIntegrationTestsDllPdbName[]; | 43 extern const wchar_t kIntegrationTestsDllPdbName[]; | 
|  | 44 extern const wchar_t kIntegrationTestsClangDllName[]; | 
| 44 | 45 | 
| 45 // Name of the DLL containing an empty exports directory. | 46 // Name of the DLL containing an empty exports directory. | 
| 46 extern const wchar_t kNoExportsDllName[]; | 47 extern const wchar_t kNoExportsDllName[]; | 
| 47 extern const wchar_t kNoExportsDllPdbName[]; | 48 extern const wchar_t kNoExportsDllPdbName[]; | 
| 48 | 49 | 
| 49 // Name of the test DLL object files and the PDB files where their type | 50 // Name of the test DLL object files and the PDB files where their type | 
| 50 // information has been emitted, relative to the test_data directory. | 51 // information has been emitted, relative to the test_data directory. | 
| 51 // The two object files are guaranteed to be in the specified format. | 52 // The two object files are guaranteed to be in the specified format. | 
| 52 extern const wchar_t kTestDllCoffObjName[]; | 53 extern const wchar_t kTestDllCoffObjName[]; | 
| 53 extern const wchar_t kTestDllLtcgObjName[]; | 54 extern const wchar_t kTestDllLtcgObjName[]; | 
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 153   testing::DummyTransformPolicy policy_; | 154   testing::DummyTransformPolicy policy_; | 
| 154   pe::CoffFile image_file_; | 155   pe::CoffFile image_file_; | 
| 155   block_graph::BlockGraph block_graph_; | 156   block_graph::BlockGraph block_graph_; | 
| 156   pe::ImageLayout image_layout_; | 157   pe::ImageLayout image_layout_; | 
| 157   block_graph::BlockGraph::Block* headers_block_; | 158   block_graph::BlockGraph::Block* headers_block_; | 
| 158 }; | 159 }; | 
| 159 | 160 | 
| 160 }  // namespace testing | 161 }  // namespace testing | 
| 161 | 162 | 
| 162 #endif  // SYZYGY_PE_UNITTEST_UTIL_H_ | 163 #endif  // SYZYGY_PE_UNITTEST_UTIL_H_ | 
| OLD | NEW | 
|---|