| OLD | NEW |
| 1 // Copyright 2014 The Crashpad Authors. All rights reserved. | 1 // Copyright 2014 The Crashpad Authors. 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, |
| 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 // See the License for the specific language governing permissions and | 12 // See the License for the specific language governing permissions and |
| 13 // limitations under the License. | 13 // limitations under the License. |
| 14 | 14 |
| 15 #include "minidump/minidump_thread_writer.h" | 15 #include "minidump/minidump_thread_writer.h" |
| 16 | 16 |
| 17 #include <windows.h> | |
| 18 #include <dbghelp.h> | |
| 19 #include <sys/types.h> | |
| 20 | |
| 21 #include <string> | 17 #include <string> |
| 22 #include <utility> | 18 #include <utility> |
| 23 | 19 |
| 24 #include "base/compiler_specific.h" | 20 #include "base/compiler_specific.h" |
| 25 #include "base/format_macros.h" | 21 #include "base/format_macros.h" |
| 26 #include "base/strings/stringprintf.h" | 22 #include "base/strings/stringprintf.h" |
| 27 #include "gtest/gtest.h" | 23 #include "gtest/gtest.h" |
| 28 #include "minidump/minidump_context_writer.h" | 24 #include "minidump/minidump_context_writer.h" |
| 25 #include "minidump/minidump_file_writer.h" |
| 29 #include "minidump/minidump_memory_writer.h" | 26 #include "minidump/minidump_memory_writer.h" |
| 30 #include "minidump/minidump_file_writer.h" | |
| 31 #include "minidump/minidump_thread_id_map.h" | 27 #include "minidump/minidump_thread_id_map.h" |
| 32 #include "minidump/test/minidump_context_test_util.h" | 28 #include "minidump/test/minidump_context_test_util.h" |
| 29 #include "minidump/test/minidump_file_writer_test_util.h" |
| 33 #include "minidump/test/minidump_memory_writer_test_util.h" | 30 #include "minidump/test/minidump_memory_writer_test_util.h" |
| 34 #include "minidump/test/minidump_file_writer_test_util.h" | |
| 35 #include "minidump/test/minidump_writable_test_util.h" | 31 #include "minidump/test/minidump_writable_test_util.h" |
| 36 #include "snapshot/test/test_cpu_context.h" | 32 #include "snapshot/test/test_cpu_context.h" |
| 37 #include "snapshot/test/test_memory_snapshot.h" | 33 #include "snapshot/test/test_memory_snapshot.h" |
| 38 #include "snapshot/test/test_thread_snapshot.h" | 34 #include "snapshot/test/test_thread_snapshot.h" |
| 39 #include "test/gtest_death_check.h" | 35 #include "test/gtest_death_check.h" |
| 40 #include "util/file/string_file.h" | 36 #include "util/file/string_file.h" |
| 41 | 37 |
| 42 namespace crashpad { | 38 namespace crashpad { |
| 43 namespace test { | 39 namespace test { |
| 44 namespace { | 40 namespace { |
| (...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 711 | 707 |
| 712 TEST(MinidumpThreadWriterDeathTest, InitializeFromSnapshot_NoContext) { | 708 TEST(MinidumpThreadWriterDeathTest, InitializeFromSnapshot_NoContext) { |
| 713 ASSERT_DEATH_CHECK( | 709 ASSERT_DEATH_CHECK( |
| 714 RunInitializeFromSnapshotTest<InitializeFromSnapshotNoContextTraits>( | 710 RunInitializeFromSnapshotTest<InitializeFromSnapshotNoContextTraits>( |
| 715 false), "context_"); | 711 false), "context_"); |
| 716 } | 712 } |
| 717 | 713 |
| 718 } // namespace | 714 } // namespace |
| 719 } // namespace test | 715 } // namespace test |
| 720 } // namespace crashpad | 716 } // namespace crashpad |
| OLD | NEW |