blob: cbebb0f0c5c9621a4741b7515ab2aef66c90cba1 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// 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.chromium.base.annotations.JNINamespace;
/**
* 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 nativeRunMain(commandLine);
}
private static native int nativeRunMain(String[] commandLine);
}