Add chromium-junit4 tag to instrumentation test AndroidManifests.

This tag is supposed to be temporary and removed when all Chromium tests
have been migrated to JUnit4.

BUG=webrtc:7123,chromium:640116
NOTRY=True

Review-Url: https://codereview.webrtc.org/2683583002
Cr-Commit-Position: refs/heads/master@{#16465}
This commit is contained in:
sakal 2017-02-07 04:12:30 -08:00 committed by Commit bot
parent e0ac5a6c15
commit b99b5960e1
2 changed files with 10 additions and 2 deletions

View File

@ -21,7 +21,11 @@
<uses-library android:name="android.test.runner" />
</application>
<!-- Needed for chromium-junit4 tag. crbug.com/640116
TODO(sakal): Remove once the tag is no longer needed. -->
<!--suppress MissingPrefix -->
<instrumentation android:name="android.support.test.runner.AndroidJUnitRunner"
android:targetPackage="org.appspot.apprtc"
android:label="Tests for AppRTCMobile"/>
android:label="Tests for AppRTCMobile"
chromium-junit4="true"/>
</manifest>

View File

@ -30,7 +30,11 @@
<uses-library android:name="android.test.runner" />
</application>
<!-- Needed for chromium-junit4 tag. crbug.com/640116
TODO(sakal): Remove once the tag is no longer needed. -->
<!--suppress MissingPrefix -->
<instrumentation android:name="android.support.test.runner.AndroidJUnitRunner"
android:targetPackage="org.webrtc"
android:label="Tests for WebRTC Android SDK"/>
android:label="Tests for WebRTC Android SDK"
chromium-junit4="true"/>
</manifest>