blob: 41a3df9926d40522283d51df51dc187db8293dff [file] [log] [blame]
Nick Kralevich65374942012-12-18 10:36:12 -08001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <jni.h>
18#include <stdio.h>
19
Nick Kralevich4267ab62013-11-12 12:14:00 -080020extern int register_android_security_cts_KernelSettingsTest(JNIEnv*);
Nick Kralevich65374942012-12-18 10:36:12 -080021extern int register_android_security_cts_CharDeviceTest(JNIEnv*);
Alex Klyubine49838e2013-08-23 10:25:04 -070022extern int register_android_security_cts_LinuxRngTest(JNIEnv*);
Nick Kralevichdeadf912013-07-02 17:18:09 -070023extern int register_android_security_cts_NativeCodeTest(JNIEnv*);
Eric Laurent6fe72da2013-08-23 17:29:00 -070024extern int register_android_security_cts_LoadEffectLibraryTest(JNIEnv*);
Robert Sesek9a2dedf2014-02-28 15:05:15 -050025extern int register_android_security_cts_SeccompDeathTestService(JNIEnv*);
Nick Kralevich9d47ac42013-10-10 16:24:46 -070026extern int register_android_security_cts_SELinuxTest(JNIEnv*);
Anton Carverca7f0f82014-08-13 18:08:27 +010027extern int register_android_security_cts_MMapExecutableTest(JNIEnv* env);
Nick Kralevich65374942012-12-18 10:36:12 -080028
29jint JNI_OnLoad(JavaVM *vm, void *reserved) {
30 JNIEnv *env = NULL;
31
32 if (vm->GetEnv((void **) &env, JNI_VERSION_1_4) != JNI_OK) {
33 return JNI_ERR;
34 }
35
36 if (register_android_security_cts_CharDeviceTest(env)) {
37 return JNI_ERR;
38 }
39
Alex Klyubine49838e2013-08-23 10:25:04 -070040 if (register_android_security_cts_LinuxRngTest(env)) {
41 return JNI_ERR;
42 }
43
Nick Kralevichdeadf912013-07-02 17:18:09 -070044 if (register_android_security_cts_NativeCodeTest(env)) {
45 return JNI_ERR;
46 }
47
Eric Laurent6fe72da2013-08-23 17:29:00 -070048 if (register_android_security_cts_LoadEffectLibraryTest(env)) {
49 return JNI_ERR;
50 }
51
Robert Sesek9a2dedf2014-02-28 15:05:15 -050052 if (register_android_security_cts_SeccompDeathTestService(env)) {
53 return JNI_ERR;
54 }
55
Nick Kralevich9d47ac42013-10-10 16:24:46 -070056 if (register_android_security_cts_SELinuxTest(env)) {
57 return JNI_ERR;
58 }
59
Nick Kralevich4267ab62013-11-12 12:14:00 -080060 if (register_android_security_cts_KernelSettingsTest(env)) {
61 return JNI_ERR;
62 }
63
Anton Carverca7f0f82014-08-13 18:08:27 +010064 if (register_android_security_cts_MMapExecutableTest(env)) {
65 return JNI_ERR;
66 }
67
Nick Kralevich65374942012-12-18 10:36:12 -080068 return JNI_VERSION_1_4;
69}