I run VTS test suite and my tests fail 100% with this consistent error:
AdbError: Error executing adb cmd 'adb -s 10.1.1.5:5555 reverse tcp:5010 tcp:1489'. ret: 1, stdout: , stderr: error: more than one device/emulator
AdbError: Error executing adb cmd 'adb -s 10.1.1.5:5555 reverse tcp:5010 tcp:1922'. ret: 1, stdout: , stderr: error: more than one device/emulator
AdbError: Error executing adb cmd 'adb -s 10.1.1.5:5555 reverse tcp:5010 tcp:4950'. ret: 1, stdout: , stderr: error: more than one device/emulator
AdbError: Error executing adb cmd 'adb -s 10.1.1.5:5555 reverse tcp:5010 tcp:1566'. ret: 1, stdout: , stderr: error: more than one device/emulator
AdbError: Error executing adb cmd 'adb -s 10.1.1.5:5555 reverse tcp:5010 tcp:7793'. ret: 1, stdout: , stderr: error: more than one device/emulator
AdbError: Error executing adb cmd 'adb -s 10.1.1.5:5555 reverse tcp:5010 tcp:4126'. ret: 1, stdout: , stderr: error: more than one device/emulator
AdbError: Error executing adb cmd 'adb -s 10.1.1.5:5555 reverse tcp:5010 tcp:3753'. ret: 1, stdout: , stderr: error: more than one device/emulator
The message is stderr: error: more than one device/emulator
but if I list with adb devices
I get only one device
List of devices attached
10.1.1.5:5555 device
same in VTS prompt:
vts-tf > l d
Serial State Allocation Product Variant Build Battery
10.1.1.5:5555 ONLINE Allocated dev_prod dev_prod 6/22/2018.025 100
My connection with the device under test is not over USB but over Ethernet.
Why adb
sees more than one device/emulator
since that is not the case ?
Does anyone knows at what serves port 5010
and why is being redirected (reverse
) to random ports 1489, 1922, 4950
, etc?