diff options
| author | 2024-10-16 14:39:05 -0700 | |
|---|---|---|
| committer | 2024-10-16 14:39:05 -0700 | |
| commit | f327bbc214ab05ddb50b6284c89d130a004ce619 (patch) | |
| tree | eca185bf6af888fedc0209420f1a191d366228b4 | |
| parent | cf2e1f67545760dc5c967e2ec121920b04bf4e09 (diff) | |
Add back non-ravenzier part of bivalent device side test
Flag: EXEMPT host test change only
Bug: 371215487
Test: atest RavenwoodBivalentTest_device
Change-Id: I9ac519af0113cebbb245aa849104e8f968aff8d7
| -rw-r--r-- | ravenwood/tests/bivalenttest/Android.bp | 62 |
1 files changed, 32 insertions, 30 deletions
diff --git a/ravenwood/tests/bivalenttest/Android.bp b/ravenwood/tests/bivalenttest/Android.bp index ac499b966afe..d7f4b3e2955d 100644 --- a/ravenwood/tests/bivalenttest/Android.bp +++ b/ravenwood/tests/bivalenttest/Android.bp @@ -54,34 +54,36 @@ android_ravenwood_test { auto_gen_config: true, } -// TODO(b/371215487): migrate bivalenttest.ravenizer tests to another architecture +android_test { + name: "RavenwoodBivalentTest_device", -// android_test { -// name: "RavenwoodBivalentTest_device", -// -// srcs: [ -// "test/**/*.java", -// ], -// static_libs: [ -// "junit", -// "truth", -// -// "androidx.annotation_annotation", -// "androidx.test.ext.junit", -// "androidx.test.rules", -// -// "junit-params", -// "platform-parametric-runner-lib", -// -// "ravenwood-junit", -// ], -// jni_libs: [ -// "libravenwoodbivalenttest_jni", -// ], -// test_suites: [ -// "device-tests", -// ], -// optimize: { -// enabled: false, -// }, -// } + srcs: [ + "test/**/*.java", + ], + // TODO(b/371215487): migrate bivalenttest.ravenizer tests to another architecture + exclude_srcs: [ + "test/**/ravenizer/*.java", + ], + static_libs: [ + "junit", + "truth", + + "androidx.annotation_annotation", + "androidx.test.ext.junit", + "androidx.test.rules", + + "junit-params", + "platform-parametric-runner-lib", + + "ravenwood-junit", + ], + jni_libs: [ + "libravenwoodbivalenttest_jni", + ], + test_suites: [ + "device-tests", + ], + optimize: { + enabled: false, + }, +} |