aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland Levillain <rpl@google.com>2022-03-31 16:16:39 +0000
committerRoland Levillain <rpl@google.com>2022-04-01 14:09:46 +0000
commit6bb955262a59d3819cbdf160d796c0cadf00099d (patch)
tree29b826ccd84c9eca867f4c759b61e13c8af303af
parent438f4a210841e539f5663931a6e640f1ebb24921 (diff)
downloadlibnativehelper-6bb955262a59d3819cbdf160d796c0cadf00099d.tar.gz
Move `libnativehelper` tests from `device-tests` to `general-tests`.
Move test modules that were part of test suite `device-tests` to test suite `general-tests`, as these tests have no device-specific feature nor requirement. Test: atest libnativehelper_tests Test: atest libnativehelper_lazy_tests Test: atest MtsLibnativehelperTestCases Test: atest MtsLibnativehelperLazyTestCases Bug: 227616003 Bug: 145488456 Change-Id: I5d186907ba9de9a9c1e0c79d504bc126d9a9725c
-rw-r--r--tests/Android.bp4
-rw-r--r--tests_mts/Android.bp2
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/Android.bp b/tests/Android.bp
index caf8131..99ec108 100644
--- a/tests/Android.bp
+++ b/tests/Android.bp
@@ -61,7 +61,7 @@ cc_defaults {
cc_test {
name: "libnativehelper_tests",
defaults: ["libnativehelper_test_defaults"],
- test_suites: ["device-tests"],
+ test_suites: ["general-tests"],
srcs: [
"scoped_local_frame_test.cpp",
"scoped_local_ref_test.cpp",
@@ -75,7 +75,7 @@ cc_test {
cc_test {
name: "libnativehelper_lazy_tests",
defaults: ["libnativehelper_test_defaults"],
- test_suites: ["device-tests"],
+ test_suites: ["general-tests"],
srcs: ["libnativehelper_lazy_test.cpp"],
shared_libs: ["liblog"],
static_libs: ["libnativehelper_lazy"],
diff --git a/tests_mts/Android.bp b/tests_mts/Android.bp
index 6496983..9483a62 100644
--- a/tests_mts/Android.bp
+++ b/tests_mts/Android.bp
@@ -34,7 +34,7 @@ java_defaults {
sdk_version: "test_current",
srcs: ["src/com/android/art/libnativehelper/JniHelpTest.java"],
test_suites: [
- "device-tests",
+ "general-tests",
"mts",
],
}