37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
|
|
// Copyright 2017 The Chromium Authors
|
||
|
|
// Use of this source code is governed by a BSD-style license that can be
|
||
|
|
// found in the LICENSE file.
|
||
|
|
|
||
|
|
#include <vector>
|
||
|
|
|
||
|
|
#include "base/android/jni_array.h"
|
||
|
|
#include "base/check.h"
|
||
|
|
#include "testing/android/native_test/native_test_jni_headers/MainRunner_jni.h"
|
||
|
|
#include "testing/android/native_test/native_test_util.h"
|
||
|
|
|
||
|
|
extern int main(int argc, char** argv);
|
||
|
|
|
||
|
|
namespace testing {
|
||
|
|
namespace android {
|
||
|
|
|
||
|
|
static jint JNI_MainRunner_RunMain(
|
||
|
|
JNIEnv* env,
|
||
|
|
const base::android::JavaParamRef<jobjectArray>& command_line) {
|
||
|
|
// Guards against process being reused.
|
||
|
|
// In most cases, running main again will cause problems (static variables,
|
||
|
|
// singletons, lazy instances won't be in the same state as a clean run).
|
||
|
|
static bool alreadyRun = false;
|
||
|
|
CHECK(!alreadyRun);
|
||
|
|
alreadyRun = true;
|
||
|
|
|
||
|
|
std::vector<std::string> cpp_command_line;
|
||
|
|
AppendJavaStringArrayToStringVector(env, command_line, &cpp_command_line);
|
||
|
|
|
||
|
|
std::vector<char*> argv;
|
||
|
|
int argc = ArgsToArgv(cpp_command_line, &argv);
|
||
|
|
return main(argc, &argv[0]);
|
||
|
|
}
|
||
|
|
|
||
|
|
} // namespace android
|
||
|
|
} // namespace testing
|