blob: 2f749b75cfdb9e529bf83d26d188b553fbba4bd8 [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);
Eric Laurenta6313f92015-08-28 16:40:30 -070028extern int register_android_security_cts_AudioFlingerBinderTest(JNIEnv* env);
Sami Tolvanenf48612d2015-07-09 13:57:32 +010029extern int register_android_security_cts_EncryptionTest(JNIEnv* env);
Robert Shihe9439232015-09-03 15:49:14 -070030extern int register_android_security_cts_MediaPlayerInfoLeakTest(JNIEnv* env);
Andy Hung1fe82772015-08-31 19:00:47 -070031extern int register_android_security_cts_AudioEffectBinderTest(JNIEnv* env);
Nick Kralevich65374942012-12-18 10:36:12 -080032
33jint JNI_OnLoad(JavaVM *vm, void *reserved) {
34 JNIEnv *env = NULL;
35
36 if (vm->GetEnv((void **) &env, JNI_VERSION_1_4) != JNI_OK) {
37 return JNI_ERR;
38 }
39
40 if (register_android_security_cts_CharDeviceTest(env)) {
41 return JNI_ERR;
42 }
43
Alex Klyubine49838e2013-08-23 10:25:04 -070044 if (register_android_security_cts_LinuxRngTest(env)) {
45 return JNI_ERR;
46 }
47
Nick Kralevichdeadf912013-07-02 17:18:09 -070048 if (register_android_security_cts_NativeCodeTest(env)) {
49 return JNI_ERR;
50 }
51
Eric Laurent6fe72da2013-08-23 17:29:00 -070052 if (register_android_security_cts_LoadEffectLibraryTest(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
Eric Laurent424e9262014-10-29 10:07:07 -070068 if (register_android_security_cts_AudioPolicyBinderTest(env)) {
69 return JNI_ERR;
70 }
71
Sami Tolvanenf48612d2015-07-09 13:57:32 +010072 if (register_android_security_cts_EncryptionTest(env)) {
73 return JNI_ERR;
74 }
75
Robert Shihe9439232015-09-03 15:49:14 -070076 if (register_android_security_cts_MediaPlayerInfoLeakTest(env)) {
77 return JNI_ERR;
78 }
79
Andy Hung1fe82772015-08-31 19:00:47 -070080 if (register_android_security_cts_AudioEffectBinderTest(env)) {
81 return JNI_ERR;
82 }
83
Eric Laurenta6313f92015-08-28 16:40:30 -070084 if (register_android_security_cts_AudioFlingerBinderTest(env)) {
85 return JNI_ERR;
86 }
87
Nick Kralevich65374942012-12-18 10:36:12 -080088 return JNI_VERSION_1_4;
89}