Files
rk35xx-android14/external/cronet/testing/android/native_test/main_runner.cc
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

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