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 "gmock/gmock.h"
18 #include "gtest/gtest.h"
19
20 #include "Caches.h"
21 #include "debug/GlesDriver.h"
22 #include "debug/NullGlesDriver.h"
23 #include "hwui/Typeface.h"
24 #include "Properties.h"
25 #include "tests/common/LeakChecker.h"
26 #include "thread/TaskManager.h"
27
28 #include <signal.h>
29
30 using namespace std;
31 using namespace android;
32 using namespace android::uirenderer;
33
34 static auto CRASH_SIGNALS = {
35 SIGABRT, SIGSEGV, SIGBUS,
36 };
37
38 static map<int, struct sigaction> gSigChain;
39
gtestSigHandler(int sig,siginfo_t * siginfo,void * context)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(), testinfo->name());
43 printf("[ FATAL! ] Process crashed, aborting tests!\n");
44 fflush(stdout);
45
46 // restore the default sighandler and re-raise
47 struct sigaction sa = gSigChain[sig];
48 sigaction(sig, &sa, nullptr);
49 raise(sig);
50 }
51
52 class TypefaceEnvironment : public testing::Environment {
53 public:
SetUp()54 virtual void SetUp() { Typeface::setRobotoTypefaceForTest(); }
55 };
56
main(int argc,char * argv[])57 int main(int argc, char* argv[]) {
58 // Register a crash handler
59 struct sigaction sa;
60 memset(&sa, 0, sizeof(sa));
61 sa.sa_sigaction = >estSigHandler;
62 sa.sa_flags = SA_SIGINFO;
63 for (auto sig : CRASH_SIGNALS) {
64 struct sigaction old_sa;
65 sigaction(sig, &sa, &old_sa);
66 gSigChain.insert(pair<int, struct sigaction>(sig, old_sa));
67 }
68
69 // Replace the default GLES driver
70 debug::GlesDriver::replace(std::make_unique<debug::NullGlesDriver>());
71 Properties::isolatedProcess = true;
72
73 // Run the tests
74 testing::InitGoogleTest(&argc, argv);
75 testing::InitGoogleMock(&argc, argv);
76
77 testing::AddGlobalTestEnvironment(new TypefaceEnvironment());
78
79 int ret = RUN_ALL_TESTS();
80 test::LeakChecker::checkForLeaks();
81 return ret;
82 }
83