Skip to content

Commit e3fcd83

Browse files
baishengzcopybara-github
authored andcommitted
Internal change
PiperOrigin-RevId: 761313251
1 parent c4aabd4 commit e3fcd83

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

src/java/com/google/devtools/deviceinfra/ext/devicemanagement/device/platform/android/AndroidDeviceDelegate.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -449,6 +449,7 @@ private void basicAndroidDriverConfiguration() throws InterruptedException {
449449
device.addSupportedDriver("AndroidInstrumentation");
450450
device.addSupportedDriver("AndroidNativeBin");
451451
device.addSupportedDriver("AndroidRoboTest");
452+
device.addSupportedDriver("MoblyTest");
452453
device.addSupportedDriver("NoOpDriver");
453454
device.addSupportedDriver("XtsTradefedTest");
454455
}

src/java/com/google/devtools/deviceinfra/ext/devicemanagement/device/platform/android/realdevice/AndroidRealDeviceDelegate.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,7 @@ private void setUpFastbootModeDevice() throws MobileHarnessException, Interrupte
309309
setUpOnlineModeDevice();
310310
} else {
311311
device.addSupportedDriver(AndroidRealDeviceConstants.NO_OP_DRIVER);
312+
device.addSupportedDriver(AndroidRealDeviceConstants.MOBLY_TEST_DRIVER);
312313
String hardware = fastboot.getVar(deviceId, FastbootProperty.PRODUCT);
313314
if (!Strings.isNullOrEmpty(hardware)) {
314315
device.updateDimension(Dimension.Name.HARDWARE, hardware);

src/java/com/google/wireless/qa/mobileharness/shared/api/device/NoOpDevice.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ public NoOpDevice(
5858
public void setUp() throws MobileHarnessException, InterruptedException {
5959
super.setUp();
6060
addSupportedDriver("NoOpDriver");
61+
addSupportedDriver("MoblyTest");
6162

6263
addSupportedDecorator("NoOpDecorator");
6364

src/javatests/com/google/devtools/mobileharness/shared/size/BinarySizeTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public class BinarySizeTest {
4747
private static final long MAX_BASE_OLC_SERVER_BINARY_SIZE_BYTE = 31_650_000L;
4848
private static final long MAX_ATS_OLC_SERVER_BINARY_SIZE_BYTE = 41_850_000L;
4949
private static final long MAX_ATS_OLC_SERVER_LOCAL_MODE_BINARY_SIZE_BYTE = 41_950_000L;
50-
private static final long MAX_LAB_SERVER_BINARY_SIZE_BYTE = 40_500_000L;
50+
private static final long MAX_LAB_SERVER_BINARY_SIZE_BYTE = 40_550_000L;
5151
private static final long MAX_ATS_CONSOLE_BINARY_SIZE_BYTE = 23_750_000L;
5252
private static final long MAX_XTS_TRADEFED_AGENT_BINARY_SIZE_BYTE = 4_550_000L;
5353

0 commit comments

Comments
 (0)