1*760c253cSXin Li#!/bin/bash 2*760c253cSXin Li 3*760c253cSXin Li# This wrapper runs adb with the serial number of the marlin device. 4*760c253cSXin Li# Replace XXXXXXXX with the actual serial number of the device. 5*760c253cSXin Li# This is just an example. Create one such wrapper for each Android 6*760c253cSXin Li# device used for running Go tests. 7*760c253cSXin Li 8*760c253cSXin Liexec adb -s XXXXXXXX "$@" 9