Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(125)

Side by Side Diff: testing/android/native_test/native_test_launcher.cc

Issue 2611323002: Relanding "Multiprocess test client: Android child process launcher rework." (Closed)
Patch Set: Addressed nyquist@'s comment + sync Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « testing/android/native_test/main_runner.cc ('k') | testing/test.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This class sets up the environment for running the native tests inside an 5 // This class sets up the environment for running the native tests inside an
6 // android application. It outputs (to a fifo) markers identifying the 6 // android application. It outputs (to a fifo) markers identifying the
7 // START/PASSED/CRASH of the test suite, FAILURE/SUCCESS of individual tests, 7 // START/PASSED/CRASH of the test suite, FAILURE/SUCCESS of individual tests,
8 // etc. 8 // etc.
9 // These markers are read by the test runner script to generate test results. 9 // These markers are read by the test runner script to generate test results.
10 // It installs signal handlers to detect crashes. 10 // It installs signal handlers to detect crashes.
11 11
12 #include <android/log.h> 12 #include <android/log.h>
13 #include <signal.h> 13 #include <signal.h>
14 14
15 #include "base/android/base_jni_registrar.h" 15 #include "base/android/base_jni_registrar.h"
16 #include "base/android/context_utils.h" 16 #include "base/android/context_utils.h"
17 #include "base/android/jni_string.h" 17 #include "base/android/jni_string.h"
18 #include "base/android/scoped_java_ref.h" 18 #include "base/android/scoped_java_ref.h"
19 #include "base/at_exit.h" 19 #include "base/at_exit.h"
20 #include "base/base_switches.h" 20 #include "base/base_switches.h"
21 #include "base/command_line.h" 21 #include "base/command_line.h"
22 #include "base/files/file_path.h" 22 #include "base/files/file_path.h"
23 #include "base/files/file_util.h" 23 #include "base/files/file_util.h"
24 #include "base/logging.h" 24 #include "base/logging.h"
25 #include "base/strings/stringprintf.h" 25 #include "base/strings/stringprintf.h"
26 #include "base/test/test_support_android.h" 26 #include "base/test/test_support_android.h"
27 #include "gtest/gtest.h" 27 #include "gtest/gtest.h"
28 #include "jni/NativeTest_jni.h" 28 #include "jni/NativeTest_jni.h"
29 #include "testing/android/native_test/main_runner.h"
29 #include "testing/android/native_test/native_test_util.h" 30 #include "testing/android/native_test/native_test_util.h"
30 31
31 using base::android::JavaParamRef; 32 using base::android::JavaParamRef;
32 33
33 // The main function of the program to be wrapped as a test apk. 34 // The main function of the program to be wrapped as a test apk.
34 extern int main(int argc, char** argv); 35 extern int main(int argc, char** argv);
35 36
36 namespace testing { 37 namespace testing {
37 namespace android { 38 namespace android {
38 39
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 121
121 base::FilePath test_data_dir( 122 base::FilePath test_data_dir(
122 base::android::ConvertJavaStringToUTF8(env, jtest_data_dir)); 123 base::android::ConvertJavaStringToUTF8(env, jtest_data_dir));
123 base::InitAndroidTestPaths(test_data_dir); 124 base::InitAndroidTestPaths(test_data_dir);
124 125
125 ScopedMainEntryLogger scoped_main_entry_logger; 126 ScopedMainEntryLogger scoped_main_entry_logger;
126 main(argc, &argv[0]); 127 main(argc, &argv[0]);
127 } 128 }
128 129
129 bool RegisterNativeTestJNI(JNIEnv* env) { 130 bool RegisterNativeTestJNI(JNIEnv* env) {
130 if (!base::android::RegisterJni(env)) { 131 if (!base::android::RegisterJni(env))
131 return false; 132 return false;
132 } 133 if (!RegisterMainRunnerJni(env))
134 return false;
133 return RegisterNativesImpl(env); 135 return RegisterNativesImpl(env);
134 } 136 }
135 137
136 // TODO(nileshagrawal): now that we're using FIFO, test scripts can detect EOF. 138 // TODO(nileshagrawal): now that we're using FIFO, test scripts can detect EOF.
137 // Remove the signal handlers. 139 // Remove the signal handlers.
138 void InstallHandlers() { 140 void InstallHandlers() {
139 struct sigaction sa; 141 struct sigaction sa;
140 memset(&sa, 0, sizeof(sa)); 142 memset(&sa, 0, sizeof(sa));
141 143
142 sa.sa_sigaction = SignalHandler; 144 sa.sa_sigaction = SignalHandler;
143 sa.sa_flags = SA_SIGINFO; 145 sa.sa_flags = SA_SIGINFO;
144 146
145 for (unsigned int i = 0; kExceptionSignals[i] != -1; ++i) { 147 for (unsigned int i = 0; kExceptionSignals[i] != -1; ++i) {
146 sigaction(kExceptionSignals[i], &sa, &g_old_sa[kExceptionSignals[i]]); 148 sigaction(kExceptionSignals[i], &sa, &g_old_sa[kExceptionSignals[i]]);
147 } 149 }
148 } 150 }
149 151
150 } // namespace android 152 } // namespace android
151 } // namespace testing 153 } // namespace testing
OLDNEW
« no previous file with comments | « testing/android/native_test/main_runner.cc ('k') | testing/test.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698