1 /*
2 * Copyright 2025 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 <cstdlib>
18 #include <string_view>
19
20 #include <android-base/logging.h>
21 #include <android/binder_process.h>
22 #include <gtest/gtest.h>
23
24 namespace {
25
init(int argc,char ** argv)26 void init(int argc, char** argv) {
27 using namespace std::string_view_literals;
28
29 ::testing::InitGoogleTest(&argc, argv);
30 ::android::base::InitLogging(argv, android::base::StderrLogger);
31
32 auto minimumSeverity = android::base::INFO;
33 for (int i = 1; i < argc; i++) {
34 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic)
35 const std::string_view arg = argv[i];
36
37 if (arg == "-v"sv) {
38 minimumSeverity = android::base::DEBUG;
39 } else if (arg == "-vv"sv) {
40 minimumSeverity = android::base::VERBOSE;
41 }
42 }
43 ::android::base::SetMinimumLogSeverity(minimumSeverity);
44 }
45
46 } // namespace
47
main(int argc,char ** argv)48 auto main(int argc, char** argv) -> int {
49 init(argc, argv);
50
51 ABinderProcess_setThreadPoolMaxThreadCount(1);
52 ABinderProcess_startThreadPool();
53
54 return RUN_ALL_TESTS();
55 }