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

Side by Side Diff: client/simulate_crash_mac_test.cc

Issue 755313004: Pass Mach message trailers to server handler functions (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Address review feedback Created 6 years 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
« no previous file with comments | « no previous file | snapshot/mac/mach_o_image_annotations_reader_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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,
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 thread_t thread, 82 thread_t thread,
83 task_t task, 83 task_t task,
84 exception_type_t exception, 84 exception_type_t exception,
85 const mach_exception_data_type_t* code, 85 const mach_exception_data_type_t* code,
86 mach_msg_type_number_t code_count, 86 mach_msg_type_number_t code_count,
87 thread_state_flavor_t* flavor, 87 thread_state_flavor_t* flavor,
88 const natural_t* old_state, 88 const natural_t* old_state,
89 mach_msg_type_number_t old_state_count, 89 mach_msg_type_number_t old_state_count,
90 thread_state_t new_state, 90 thread_state_t new_state,
91 mach_msg_type_number_t* new_state_count, 91 mach_msg_type_number_t* new_state_count,
92 const mach_msg_trailer_t* trailer,
92 bool* destroy_complex_request) override { 93 bool* destroy_complex_request) override {
93 *destroy_complex_request = true; 94 *destroy_complex_request = true;
94 95
95 // Check the entire exception message, because most or all of it was 96 // Check the entire exception message, because most or all of it was
96 // generated by SimulateCrash() instead of the kernel. 97 // generated by SimulateCrash() instead of the kernel.
97 98
98 EXPECT_EQ(behavior_, behavior); 99 EXPECT_EQ(behavior_, behavior);
99 EXPECT_EQ(LocalPort(), exception_port); 100 EXPECT_EQ(LocalPort(), exception_port);
100 if (ExceptionBehaviorHasIdentity(behavior)) { 101 if (ExceptionBehaviorHasIdentity(behavior)) {
101 EXPECT_NE(THREAD_NULL, thread); 102 EXPECT_NE(THREAD_NULL, thread);
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
370 test_simulate_crash_mac.Run(); 371 test_simulate_crash_mac.Run();
371 } 372 }
372 } 373 }
373 } 374 }
374 } 375 }
375 } 376 }
376 377
377 } // namespace 378 } // namespace
378 } // namespace test 379 } // namespace test
379 } // namespace crashpad 380 } // namespace crashpad
OLDNEW
« no previous file with comments | « no previous file | snapshot/mac/mach_o_image_annotations_reader_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698