When you call /build/android/run_tests.py or /build/android/run_instrumentation_tests.py it assumes an Android device is attached to the local host.
TODO: these scripts do not exist.
If you want to work remotely from your laptop with an Android device attached to it, while keeping an ssh connection to a remote desktop machine where you have your build environment setup, you will have to use one of the two alternatives listed below.
You can open a regular ssh to your host.
# build it desktop$ cd $SRC; desktop$ . build/android/envsetup.sh desktop$ build/gyp_chromium -DOS=android desktop$ ninja -C out/Debug
See also Android Build Instructions.
You have to have an Android device attached to it.
# Install sshfs laptop$ sudo apt-get install sshfs # Mount the chrome source from your remote host machine into your local laptop. laptop$ mkdir ~/chrome_sshfs laptop$ sshfs your.host.machine:/usr/local/code/chrome/src ./chrome_sshfs # Setup environment. laptop$ cd chrome_sshfs laptop$ . build/android/envsetup.sh laptop$ adb devices laptop$ adb root # Install APK (which was previously built in the host machine). laptop$ python build/android/adb_install_apk.py --apk ContentShell.apk --apk_package org.chromium.content_shell # Run tests. laptop$ python build/android/run_instrumentation_tests.py -I --test-apk ContentShellTest -vvv
But if you have different versions, lets say, Ubuntu Lucid on your laptop, and the newer Ubuntu Precise on your host machine, some binaries compiled on the host will not work on your laptop. In this case you will have to recompile these binaries in your laptop:
# May need to install dependencies on your laptop. laptop$ sudo ./build/install-build-deps-android.sh # Rebuild the needed binaries on your laptop. laptop$ build/gyp_chromium -DOS=android laptop$ ninja -C out/Debug md5sum host_forwarder
Copy /tools/android/adb_remote_setup.sh to your laptop, then run it. adb_remote_setup.sh updates itself, so you only need to copy it once.
laptop$ curl -sSf "https://chromium.googlesource.com/chromium/src.git/+/master/tools/android/adb_remote_setup.sh?format=TEXT" | base64 --decode > adb_remote_setup.sh laptop$ chmod +x adb_remote_setup.sh laptop$ ./adb_remote_setup.sh <desktop_hostname> <path_to_adb_on_desktop>
You have to make sure that ports 5037, 10000, ad 10201 are not being used on either your laptop or your desktop. Try the command: netstat -nap | grep 10000
to see
Kill the pids that are using those ports.
desktop$ killall adb
desktop$ killall host_forwarder
laptop$ ssh -C -R 5037:localhost:5037 -R 10000:localhost:10000 -R 10201:localhost:10201 <desktop_host_name>
desktop$ python build/android/run_instrumentation_tests.py -I --test-apk ContentShellTest -vvv