Skip to content

Internal change #3623

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,7 @@ private void basicAndroidDriverConfiguration() throws InterruptedException {
device.addSupportedDriver("AndroidInstrumentation");
device.addSupportedDriver("AndroidNativeBin");
device.addSupportedDriver("AndroidRoboTest");
device.addSupportedDriver("MoblyTest");
device.addSupportedDriver("NoOpDriver");
device.addSupportedDriver("XtsTradefedTest");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,7 @@ private void setUpFastbootModeDevice() throws MobileHarnessException, Interrupte
setUpOnlineModeDevice();
} else {
device.addSupportedDriver(AndroidRealDeviceConstants.NO_OP_DRIVER);
device.addSupportedDriver(AndroidRealDeviceConstants.MOBLY_TEST_DRIVER);
String hardware = fastboot.getVar(deviceId, FastbootProperty.PRODUCT);
if (!Strings.isNullOrEmpty(hardware)) {
device.updateDimension(Dimension.Name.HARDWARE, hardware);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ public NoOpDevice(
public void setUp() throws MobileHarnessException, InterruptedException {
super.setUp();
addSupportedDriver("NoOpDriver");
addSupportedDriver("MoblyTest");

addSupportedDecorator("NoOpDecorator");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class BinarySizeTest {
private static final long MAX_BASE_OLC_SERVER_BINARY_SIZE_BYTE = 31_650_000L;
private static final long MAX_ATS_OLC_SERVER_BINARY_SIZE_BYTE = 41_850_000L;
private static final long MAX_ATS_OLC_SERVER_LOCAL_MODE_BINARY_SIZE_BYTE = 41_950_000L;
private static final long MAX_LAB_SERVER_BINARY_SIZE_BYTE = 40_500_000L;
private static final long MAX_LAB_SERVER_BINARY_SIZE_BYTE = 40_550_000L;
private static final long MAX_ATS_CONSOLE_BINARY_SIZE_BYTE = 23_750_000L;
private static final long MAX_XTS_TRADEFED_AGENT_BINARY_SIZE_BYTE = 4_550_000L;

Expand Down