Home | History | Annotate | Download | only in android
      1 #!/bin/bash
      2 
      3 # This wrapper runs adb with the serial number of the shamu device.
      4 # Replace XXXXXXXX with the actual serial number of the device.
      5 # This is just an example. Create one such wrapper for each Android
      6 # device used for running Go tests.
      7 
      8 exec adb -s XXXXXXXX "$@"
      9