blob: c60b866fce6d6f6e14745f108d63f1d35706cb78 [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*);
Nick Kralevich9d47ac42013-10-10 16:24:46 -070025extern int register_android_security_cts_SELinuxTest(JNIEnv*);
Anton Carverca7f0f82014-08-13 18:08:27 +010026extern int register_android_security_cts_MMapExecutableTest(JNIEnv* env);
Eric Laurent424e9262014-10-29 10:07:07 -070027extern int register_android_security_cts_AudioPolicyBinderTest(JNIEnv* env);
Sami Tolvanenf48612d2015-07-09 13:57:32 +010028extern int register_android_security_cts_EncryptionTest(JNIEnv* env);
Nick Kralevich65374942012-12-18 10:36:12 -080029
30jint JNI_OnLoad(JavaVM *vm, void *reserved) {
31 JNIEnv *env = NULL;
32
33 if (vm->GetEnv((void **) &env, JNI_VERSION_1_4) != JNI_OK) {
34 return JNI_ERR;
35 }
36
37 if (register_android_security_cts_CharDeviceTest(env)) {
38 return JNI_ERR;
39 }
40
Alex Klyubine49838e2013-08-23 10:25:04 -070041 if (register_android_security_cts_LinuxRngTest(env)) {
42 return JNI_ERR;
43 }
44
Nick Kralevichdeadf912013-07-02 17:18:09 -070045 if (register_android_security_cts_NativeCodeTest(env)) {
46 return JNI_ERR;
47 }
48
Eric Laurent6fe72da2013-08-23 17:29:00 -070049 if (register_android_security_cts_LoadEffectLibraryTest(env)) {
50 return JNI_ERR;
51 }
52
Nick Kralevich9d47ac42013-10-10 16:24:46 -070053 if (register_android_security_cts_SELinuxTest(env)) {
54 return JNI_ERR;
55 }
56
Nick Kralevich4267ab62013-11-12 12:14:00 -080057 if (register_android_security_cts_KernelSettingsTest(env)) {
58 return JNI_ERR;
59 }
60
Anton Carverca7f0f82014-08-13 18:08:27 +010061 if (register_android_security_cts_MMapExecutableTest(env)) {
62 return JNI_ERR;
63 }
64
Eric Laurent424e9262014-10-29 10:07:07 -070065 if (register_android_security_cts_AudioPolicyBinderTest(env)) {
66 return JNI_ERR;
67 }
68
Sami Tolvanenf48612d2015-07-09 13:57:32 +010069 if (register_android_security_cts_EncryptionTest(env)) {
70 return JNI_ERR;
71 }
72
Nick Kralevich65374942012-12-18 10:36:12 -080073 return JNI_VERSION_1_4;
74}