Revision: 12178
Author: [email protected]
Date: Mon Jul 23 09:57:22 2012
Log: Android test runner: Make android-sync.sh work on Mac
Review URL: https://chromiumcodereview.appspot.com/10806063
Patch from Haitao Feng <[email protected]>.
http://code.google.com/p/v8/source/detail?r=12178
Modified:
/branches/bleeding_edge/tools/android-sync.sh
=======================================
--- /branches/bleeding_edge/tools/android-sync.sh Mon Jul 23 04:34:03 2012
+++ /branches/bleeding_edge/tools/android-sync.sh Mon Jul 23 09:57:22 2012
@@ -33,7 +33,7 @@
# The fourth argument is the absolute path to the V8 directory on the
device.
if [ ${#@} -lt 4 ] ; then
- echo "Error: need 4 arguments"
+ echo "$0: Error: need 4 arguments"
exit 1
fi
@@ -42,11 +42,34 @@
HOST_V8=$3
ANDROID_V8=$4
+function LINUX_MD5 {
+ local HASH=$(md5sum $1)
+ echo ${HASH%% *}
+}
+
+function DARWIN_MD5 {
+ local HASH=$(md5 $1)
+ echo ${HASH} | cut -f2 -d "=" | cut -f2 -d " "
+}
+
+host_os=$(uname -s)
+case "${host_os}" in
+ "Linux")
+ MD5=LINUX_MD5
+ ;;
+ "Darwin")
+ MD5=DARWIN_MD5
+ ;;
+ *)
+ echo "$0: Host platform ${host_os} is not supported" >& 2
+ exit 1
+esac
+
function sync_file {
local FILE=$1
local ANDROID_HASH=$(adb shell "md5 \"$ANDROID_V8/$FILE\"")
- local HOST_HASH=$(md5sum "$HOST_V8/$FILE")
- if [ "${ANDROID_HASH%% *}" != "${HOST_HASH%% *}" ]; then
+ local HOST_HASH=$($MD5 "$HOST_V8/$FILE")
+ if [ "${ANDROID_HASH%% *}" != "${HOST_HASH}" ]; then
adb push "$HOST_V8/$FILE" "$ANDROID_V8/$FILE" &> /dev/null
fi
echo -n "."
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev