John Reck | dc87c52 | 2016-02-29 13:31:18 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2016 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
sergeyv | 8bd5edf | 2016-05-13 15:03:35 -0700 | [diff] [blame] | 17 | #include "gmock/gmock.h" |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 18 | #include "gtest/gtest.h" |
John Reck | dc87c52 | 2016-02-29 13:31:18 -0800 | [diff] [blame] | 19 | |
John Reck | 283bb46 | 2018-12-13 16:40:14 -0800 | [diff] [blame] | 20 | #include "Properties.h" |
Seigo Nonaka | b6e2013 | 2016-11-14 14:07:41 +0900 | [diff] [blame] | 21 | #include "hwui/Typeface.h" |
sergeyv | 7dc370b | 2016-06-17 11:21:11 -0700 | [diff] [blame] | 22 | #include "tests/common/LeakChecker.h" |
John Reck | dc87c52 | 2016-02-29 13:31:18 -0800 | [diff] [blame] | 23 | |
John Reck | dc87c52 | 2016-02-29 13:31:18 -0800 | [diff] [blame] | 24 | #include <signal.h> |
John Reck | dc87c52 | 2016-02-29 13:31:18 -0800 | [diff] [blame] | 25 | |
| 26 | using namespace std; |
| 27 | using namespace android; |
| 28 | using namespace android::uirenderer; |
| 29 | |
| 30 | static auto CRASH_SIGNALS = { |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 31 | SIGABRT, SIGSEGV, SIGBUS, |
John Reck | dc87c52 | 2016-02-29 13:31:18 -0800 | [diff] [blame] | 32 | }; |
| 33 | |
| 34 | static map<int, struct sigaction> gSigChain; |
| 35 | |
| 36 | static void gtestSigHandler(int sig, siginfo_t* siginfo, void* context) { |
| 37 | auto testinfo = ::testing::UnitTest::GetInstance()->current_test_info(); |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 38 | printf("[ FAILED ] %s.%s\n", testinfo->test_case_name(), testinfo->name()); |
John Reck | dc87c52 | 2016-02-29 13:31:18 -0800 | [diff] [blame] | 39 | printf("[ FATAL! ] Process crashed, aborting tests!\n"); |
| 40 | fflush(stdout); |
| 41 | |
| 42 | // restore the default sighandler and re-raise |
| 43 | struct sigaction sa = gSigChain[sig]; |
| 44 | sigaction(sig, &sa, nullptr); |
| 45 | raise(sig); |
| 46 | } |
| 47 | |
Seigo Nonaka | b6e2013 | 2016-11-14 14:07:41 +0900 | [diff] [blame] | 48 | class TypefaceEnvironment : public testing::Environment { |
| 49 | public: |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 50 | virtual void SetUp() { Typeface::setRobotoTypefaceForTest(); } |
Seigo Nonaka | b6e2013 | 2016-11-14 14:07:41 +0900 | [diff] [blame] | 51 | }; |
| 52 | |
John Reck | dc87c52 | 2016-02-29 13:31:18 -0800 | [diff] [blame] | 53 | int main(int argc, char* argv[]) { |
| 54 | // Register a crash handler |
| 55 | struct sigaction sa; |
| 56 | memset(&sa, 0, sizeof(sa)); |
| 57 | sa.sa_sigaction = >estSigHandler; |
| 58 | sa.sa_flags = SA_SIGINFO; |
| 59 | for (auto sig : CRASH_SIGNALS) { |
| 60 | struct sigaction old_sa; |
| 61 | sigaction(sig, &sa, &old_sa); |
| 62 | gSigChain.insert(pair<int, struct sigaction>(sig, old_sa)); |
| 63 | } |
| 64 | |
John Reck | faa1b0a | 2021-05-13 10:28:38 -0400 | [diff] [blame^] | 65 | // Avoid talking to SF |
John Reck | 5642847 | 2018-03-16 17:27:17 -0700 | [diff] [blame] | 66 | Properties::isolatedProcess = true; |
John Reck | faa1b0a | 2021-05-13 10:28:38 -0400 | [diff] [blame^] | 67 | // Default to GLES (Vulkan-aware tests will override this) |
| 68 | Properties::overrideRenderPipelineType(RenderPipelineType::SkiaGL); |
sergeyv | 8bd5edf | 2016-05-13 15:03:35 -0700 | [diff] [blame] | 69 | |
John Reck | dc87c52 | 2016-02-29 13:31:18 -0800 | [diff] [blame] | 70 | // Run the tests |
| 71 | testing::InitGoogleTest(&argc, argv); |
sergeyv | 8bd5edf | 2016-05-13 15:03:35 -0700 | [diff] [blame] | 72 | testing::InitGoogleMock(&argc, argv); |
| 73 | |
Seigo Nonaka | b6e2013 | 2016-11-14 14:07:41 +0900 | [diff] [blame] | 74 | testing::AddGlobalTestEnvironment(new TypefaceEnvironment()); |
| 75 | |
John Reck | dc87c52 | 2016-02-29 13:31:18 -0800 | [diff] [blame] | 76 | int ret = RUN_ALL_TESTS(); |
sergeyv | 7dc370b | 2016-06-17 11:21:11 -0700 | [diff] [blame] | 77 | test::LeakChecker::checkForLeaks(); |
John Reck | dc87c52 | 2016-02-29 13:31:18 -0800 | [diff] [blame] | 78 | return ret; |
| 79 | } |