Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: tools/android-sync.sh

Issue 10696048: Add Makefile targets for running tests on Android. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address comments Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tools/android-run.py ('k') | tools/test.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 # Copyright 2012 the V8 project authors. All rights reserved. 2 # Copyright 2012 the V8 project authors. All rights reserved.
3 # Redistribution and use in source and binary forms, with or without 3 # Redistribution and use in source and binary forms, with or without
4 # modification, are permitted provided that the following conditions are 4 # modification, are permitted provided that the following conditions are
5 # met: 5 # met:
6 # 6 #
7 # * Redistributions of source code must retain the above copyright 7 # * Redistributions of source code must retain the above copyright
8 # notice, this list of conditions and the following disclaimer. 8 # notice, this list of conditions and the following disclaimer.
9 # * Redistributions in binary form must reproduce the above 9 # * Redistributions in binary form must reproduce the above
10 # copyright notice, this list of conditions and the following 10 # copyright notice, this list of conditions and the following
11 # disclaimer in the documentation and/or other materials provided 11 # disclaimer in the documentation and/or other materials provided
12 # with the distribution. 12 # with the distribution.
13 # * Neither the name of Google Inc. nor the names of its 13 # * Neither the name of Google Inc. nor the names of its
14 # contributors may be used to endorse or promote products derived 14 # contributors may be used to endorse or promote products derived
15 # from this software without specific prior written permission. 15 # from this software without specific prior written permission.
16 # 16 #
17 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 18 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 19 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 20 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 21 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 22 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 23 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 28
29 # Checks that the number of compilation units having at least one static 29 # This script pushes android binaries and test data to the device.
30 # initializer in d8 matches the one defined below. 30 # The first argument can be either "android.release" or "android.debug".
31 # Note that the project must be built with SCons before running this script. 31 # The second argument is a relative path to the output directory with binaries.
32 # The third argument is the absolute path to the V8 directory on the host.
33 # The fourth argument is the absolute path to the V8 directory on the device.
32 34
33 # Allow: 35 if [ ${#@} -lt 4 ] ; then
34 # - _GLOBAL__I__ZN2v810LineEditor6first_E 36 echo "Error: need 4 arguments"
35 # - _GLOBAL__I__ZN2v88internal32AtomicOps_Internalx86CPUFeaturesE
36 # - _GLOBAL__I__ZN2v88internal8ThreadId18highest_thread_id_E
37 expected_static_init_count=3
38
39 v8_root=$(readlink -f $(dirname $BASH_SOURCE)/../)
40
41 if [ -n "$1" ] ; then
42 d8="${v8_root}/$1"
43 else
44 d8="${v8_root}/d8"
45 fi
46
47 if [ ! -f "$d8" ]; then
48 echo "d8 binary not found: $d8"
49 exit 1 37 exit 1
50 fi 38 fi
51 39
52 static_inits=$(nm "$d8" | grep _GLOBAL_ | grep _I_ | awk '{ print $NF; }') 40 ARCH_MODE=$1
41 OUTDIR=$2
42 HOST_V8=$3
43 ANDROID_V8=$4
53 44
54 static_init_count=$(echo "$static_inits" | wc -l) 45 function sync_file {
46 local FILE=$1
47 local ANDROID_HASH=$(adb shell "md5 \"$ANDROID_V8/$FILE\"")
48 local HOST_HASH=$(md5sum "$HOST_V8/$FILE")
49 if [ "${ANDROID_HASH%% *}" != "${HOST_HASH%% *}" ]; then
50 adb push "$HOST_V8/$FILE" "$ANDROID_V8/$FILE" &> /dev/null
51 fi
52 echo -n "."
53 }
55 54
56 if [ $static_init_count -gt $expected_static_init_count ]; then 55 function sync_dir {
57 echo "Too many static initializers." 56 local DIR=$1
58 echo "$static_inits" 57 echo -n "sync to $ANDROID_V8/$DIR"
59 exit 1 58 for FILE in $(find "$HOST_V8/$DIR" -type f); do
60 else 59 local RELATIVE_FILE=${FILE:${#HOST_V8}}
Jakob Kummerow 2012/07/02 16:27:50 quotes please
ulan 2012/07/02 16:38:24 Added quotes below.
61 echo "Static initializer check passed ($static_init_count initializers)." 60 sync_file $RELATIVE_FILE
Jakob Kummerow 2012/07/02 16:27:50 quotes please
ulan 2012/07/02 16:38:24 Done.
62 exit 0 61 done
63 fi 62 echo ""
63 }
64
65 echo -n "sync to $ANDROID_V8/$OUTDIR/$ARCH_MODE"
66 sync_file $OUTDIR/$ARCH_MODE/cctest
Jakob Kummerow 2012/07/02 16:27:50 quotes please (twice more below)
ulan 2012/07/02 16:38:24 Done.
67 sync_file $OUTDIR/$ARCH_MODE/d8
68 sync_file $OUTDIR/$ARCH_MODE/preparser
69 echo ""
70 echo -n "sync to $ANDROID_V8/tools"
71 sync_file tools/consarray.js
72 sync_file tools/codemap.js
73 sync_file tools/csvparser.js
74 sync_file tools/profile.js
75 sync_file tools/splaytree.js
76 echo ""
77 sync_dir test/message
78 sync_dir test/mjsunit
79 sync_dir test/preparser
OLDNEW
« no previous file with comments | « tools/android-run.py ('k') | tools/test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698