diff options
| author | David Crawshaw <david.crawshaw@zentus.com> | 2014-09-04 13:39:51 -0400 |
|---|---|---|
| committer | David Crawshaw <david.crawshaw@zentus.com> | 2014-09-04 13:39:51 -0400 |
| commit | fa9f3058e0c0ff1fc05ea76544f9e9a23fce51d8 (patch) | |
| tree | fbf768b5fb965eafb629218a9ab63363ce6e1889 /src/androidtest.bash | |
| parent | 97fdfdb52c28cab9251d1a610382d257c39682da (diff) | |
| download | go-fa9f3058e0c0ff1fc05ea76544f9e9a23fce51d8.tar.xz | |
androidtest.bash: drop noisy adb sync output
LGTM=bradfitz
R=golang-codereviews, bradfitz
CC=golang-codereviews
https://golang.org/cl/138070043
Diffstat (limited to 'src/androidtest.bash')
| -rwxr-xr-x | src/androidtest.bash | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/androidtest.bash b/src/androidtest.bash index 9bf7773b23..43a93a141b 100755 --- a/src/androidtest.bash +++ b/src/androidtest.bash @@ -47,7 +47,9 @@ ln -s $GOROOT/src/cmd $FAKE_GOROOT/src/cmd ln -s $GOROOT/src/pkg $FAKE_GOROOT/src/pkg ln -s $GOROOT/test $FAKE_GOROOT/test ln -s $GOROOT/lib $FAKE_GOROOT/lib -adb sync data +echo '# Syncing test files to android device' +time adb sync data &> /dev/null +echo '' rm -rf "$ANDROID_PRODUCT_OUT" # Run standard build and tests. |
