blob: 9da722438b997af330c92327216e8842753492ee [file] [log] [blame]
// 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.
package org.chromium.native_test;
import org.jni_zero.JNINamespace;
import org.jni_zero.NativeMethods;
/**
* This class provides a way to run the native main method.
* It is used in the multi-process test case, so that the child process can call
* the main method without //base/test:test_support's linkage requiring the
* main() symbol.
*/
@JNINamespace("testing::android")
public final class MainRunner {
// Prevents instantiation.
private MainRunner() {}
// Maps the file descriptors and executes the main method with the passed in command line.
public static int runMain(String[] commandLine) {
return MainRunnerJni.get().runMain(commandLine);
}
@NativeMethods
interface Natives {
int runMain(String[] commandLine);
}
}