| 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 | |
| 17 | #include "gtest/gtest.h" |
| sergeyv | 8bd5edf | 2016-05-13 15:03:35 -0700 | [diff] [blame] | 18 | #include "gmock/gmock.h" |
| John Reck | dc87c52 | 2016-02-29 13:31:18 -0800 | [diff] [blame] | 19 | |
| 20 | #include "Caches.h" |
| sergeyv | 8bd5edf | 2016-05-13 15:03:35 -0700 | [diff] [blame] | 21 | #include "debug/GlesDriver.h" |
| 22 | #include "debug/NullGlesDriver.h" |
| John Reck | dc87c52 | 2016-02-29 13:31:18 -0800 | [diff] [blame] | 23 | #include "thread/TaskManager.h" |
| sergeyv | 7dc370b | 2016-06-17 11:21:11 -0700 | [diff] [blame^] | 24 | #include "tests/common/LeakChecker.h" |
| John Reck | dc87c52 | 2016-02-29 13:31:18 -0800 | [diff] [blame] | 25 | |
| John Reck | dc87c52 | 2016-02-29 13:31:18 -0800 | [diff] [blame] | 26 | #include <signal.h> |
| John Reck | dc87c52 | 2016-02-29 13:31:18 -0800 | [diff] [blame] | 27 | |
| 28 | using namespace std; |
| 29 | using namespace android; |
| 30 | using namespace android::uirenderer; |
| 31 | |
| 32 | static auto CRASH_SIGNALS = { |
| 33 | SIGABRT, |
| 34 | SIGSEGV, |
| 35 | SIGBUS, |
| 36 | }; |
| 37 | |
| 38 | static map<int, struct sigaction> gSigChain; |
| 39 | |
| 40 | static void gtestSigHandler(int sig, siginfo_t* siginfo, void* context) { |
| 41 | auto testinfo = ::testing::UnitTest::GetInstance()->current_test_info(); |
| 42 | printf("[ FAILED ] %s.%s\n", testinfo->test_case_name(), |
| 43 | testinfo->name()); |
| 44 | printf("[ FATAL! ] Process crashed, aborting tests!\n"); |
| 45 | fflush(stdout); |
| 46 | |
| 47 | // restore the default sighandler and re-raise |
| 48 | struct sigaction sa = gSigChain[sig]; |
| 49 | sigaction(sig, &sa, nullptr); |
| 50 | raise(sig); |
| 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 | |
| sergeyv | 8bd5edf | 2016-05-13 15:03:35 -0700 | [diff] [blame] | 65 | // Replace the default GLES driver |
| 66 | debug::GlesDriver::replace(std::make_unique<debug::NullGlesDriver>()); |
| 67 | |
| John Reck | dc87c52 | 2016-02-29 13:31:18 -0800 | [diff] [blame] | 68 | // Run the tests |
| 69 | testing::InitGoogleTest(&argc, argv); |
| sergeyv | 8bd5edf | 2016-05-13 15:03:35 -0700 | [diff] [blame] | 70 | testing::InitGoogleMock(&argc, argv); |
| 71 | |
| John Reck | dc87c52 | 2016-02-29 13:31:18 -0800 | [diff] [blame] | 72 | int ret = RUN_ALL_TESTS(); |
| sergeyv | 7dc370b | 2016-06-17 11:21:11 -0700 | [diff] [blame^] | 73 | test::LeakChecker::checkForLeaks(); |
| John Reck | dc87c52 | 2016-02-29 13:31:18 -0800 | [diff] [blame] | 74 | return ret; |
| 75 | } |
| 76 | |