diff options
author | David Su <dysu@google.com> | 2020-03-23 16:14:54 -0700 |
---|---|---|
committer | David Su <dysu@google.com> | 2020-03-23 16:14:54 -0700 |
commit | 87d6a79f2f09ce7fee75294ba066a8d81e991706 (patch) | |
tree | 1f37c10eef8b6cfd7c1d4c1162a129d56018c018 /wifi/tests | |
parent | 20b0a9531ab3a069e836948822cf0ce5df312fbf (diff) |
frameworks/base/wifi/tests: Run mts-wifi on AOSP builds
This is a temporary workaround for mts-wifi to
run on AOSP builds, since on those devices the
Wifi package name is `com.android.wifi` and not
`com.google.android.wifi`.
Bug: 151836001
Test: continuous runs
Change-Id: I11baae67e10638acd8c24ae0fab92e5b2bfca6e4
Diffstat (limited to 'wifi/tests')
-rw-r--r-- | wifi/tests/AndroidTest.xml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/wifi/tests/AndroidTest.xml b/wifi/tests/AndroidTest.xml index 34e2e3af9cda..ea5043ae5f65 100644 --- a/wifi/tests/AndroidTest.xml +++ b/wifi/tests/AndroidTest.xml @@ -30,5 +30,9 @@ <object type="module_controller" class="com.android.tradefed.testtype.suite.module.MainlineTestModuleController"> <option name="mainline-module-package-name" value="com.google.android.wifi" /> + <!-- TODO(b/151836001): com.android.wifi doesn't guarantee it is a Mainline module since + it could still be OEM customized. Workaround so that this test will still run on + AOSP builds. --> + <option name="mainline-module-package-name" value="com.android.wifi" /> </object> </configuration> |