| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2014 The Crashpad Authors. All rights reserved. |
| 2 // |
| 3 // Licensed under the Apache License, Version 2.0 (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 |
| 6 // |
| 7 // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 // |
| 9 // Unless required by applicable law or agreed to in writing, software |
| 10 // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 // See the License for the specific language governing permissions and |
| 13 // limitations under the License. |
| 14 |
| 15 #include "util/mach/exception_behaviors.h" |
| 16 |
| 17 #include "base/basictypes.h" |
| 18 #include "base/strings/stringprintf.h" |
| 19 #include "gtest/gtest.h" |
| 20 #include "util/mach/mach_extensions.h" |
| 21 |
| 22 namespace crashpad { |
| 23 namespace test { |
| 24 namespace { |
| 25 |
| 26 TEST(ExceptionBehaviors, ExceptionBehaviors) { |
| 27 struct TestData { |
| 28 exception_behavior_t behavior; |
| 29 bool state; |
| 30 bool identity; |
| 31 bool mach_exception_codes; |
| 32 exception_behavior_t basic_behavior; |
| 33 }; |
| 34 const TestData kTestData[] = { |
| 35 {EXCEPTION_DEFAULT, false, true, false, EXCEPTION_DEFAULT}, |
| 36 {EXCEPTION_STATE, true, false, false, EXCEPTION_STATE}, |
| 37 {EXCEPTION_STATE_IDENTITY, true, true, false, EXCEPTION_STATE_IDENTITY}, |
| 38 {kMachExceptionCodes | EXCEPTION_DEFAULT, |
| 39 false, |
| 40 true, |
| 41 true, |
| 42 EXCEPTION_DEFAULT}, |
| 43 {kMachExceptionCodes | EXCEPTION_STATE, |
| 44 true, |
| 45 false, |
| 46 true, |
| 47 EXCEPTION_STATE}, |
| 48 {kMachExceptionCodes | EXCEPTION_STATE_IDENTITY, |
| 49 true, |
| 50 true, |
| 51 true, |
| 52 EXCEPTION_STATE_IDENTITY}, |
| 53 }; |
| 54 |
| 55 for (size_t index = 0; index < arraysize(kTestData); ++index) { |
| 56 const TestData& test_data = kTestData[index]; |
| 57 SCOPED_TRACE(base::StringPrintf( |
| 58 "index %zu, behavior %d", index, test_data.behavior)); |
| 59 |
| 60 EXPECT_EQ(test_data.state, ExceptionBehaviorHasState(test_data.behavior)); |
| 61 EXPECT_EQ(test_data.identity, |
| 62 ExceptionBehaviorHasIdentity(test_data.behavior)); |
| 63 EXPECT_EQ(test_data.mach_exception_codes, |
| 64 ExceptionBehaviorHasMachExceptionCodes(test_data.behavior)); |
| 65 EXPECT_EQ(test_data.basic_behavior, |
| 66 ExceptionBehaviorBasic(test_data.behavior)); |
| 67 } |
| 68 } |
| 69 |
| 70 } // namespace |
| 71 } // namespace test |
| 72 } // namespace crashpad |
| OLD | NEW |