Landing directly for testing the ios buildbot code.
BUG=skia: TBR=borenet Review URL: https://codereview.chromium.org/1087653005
This commit is contained in:
parent
a4a0aeb748
commit
cdec56e72b
14
platform_tools/ios/bin/ios_mkdir
Executable file
14
platform_tools/ios/bin/ios_mkdir
Executable file
@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
###############################################################################
|
||||
# Copyright 2015 Google Inc.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license that can be
|
||||
# found in the LICENSE file.
|
||||
###############################################################################
|
||||
#
|
||||
# Create a directory relative to the Documents directory.
|
||||
|
||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
source $SCRIPT_DIR/ios_setup.sh
|
||||
|
||||
ios_mkdir $1
|
14
platform_tools/ios/bin/ios_mount.sh
Executable file
14
platform_tools/ios/bin/ios_mount.sh
Executable file
@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
###############################################################################
|
||||
# Copyright 2015 Google Inc.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license that can be
|
||||
# found in the LICENSE file.
|
||||
###############################################################################
|
||||
#
|
||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
source $SCRIPT_DIR/ios_setup.sh
|
||||
|
||||
ios_install_app
|
||||
ios_mount
|
20
platform_tools/ios/bin/ios_ninja
Executable file
20
platform_tools/ios/bin/ios_ninja
Executable file
@ -0,0 +1,20 @@
|
||||
#!/bin/bash
|
||||
|
||||
###############################################################################
|
||||
# Copyright 2015 Google Inc.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license that can be
|
||||
# found in the LICENSE file.
|
||||
###############################################################################
|
||||
#
|
||||
# Build the skia for ios. This assumes that GYP_DEFINES has been set.
|
||||
#
|
||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
source $SCRIPT_DIR/ios_setup.sh
|
||||
|
||||
pushd
|
||||
cd ${SKIA_SRC_DIR}
|
||||
"${SKIA_SRC_DIR}/gyp_skia"
|
||||
xcodebuild -project "$SKIA_SRC_DIR/out/gyp/iOSShell.xcodeproj"\
|
||||
-configuration "$BUILDTYPE"
|
||||
popd
|
21
platform_tools/ios/bin/ios_path_exists
Executable file
21
platform_tools/ios/bin/ios_path_exists
Executable file
@ -0,0 +1,21 @@
|
||||
#!/bin/bash
|
||||
|
||||
###############################################################################
|
||||
# Copyright 2015 Google Inc.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license that can be
|
||||
# found in the LICENSE file.
|
||||
###############################################################################
|
||||
#
|
||||
# Check if ios path exists.
|
||||
#
|
||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
source $SCRIPT_DIR/ios_setup.sh
|
||||
|
||||
if [[ "$#" -ne "1" ]]; then
|
||||
echo "Usage: ios_path_exists <path_in_Documents_folder_of_ios_device>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
RET=ios_path_exists $1
|
||||
exit $RET
|
16
platform_tools/ios/bin/ios_pull.sh
Executable file
16
platform_tools/ios/bin/ios_pull.sh
Executable file
@ -0,0 +1,16 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
###############################################################################
|
||||
# Copyright 2015 Google Inc.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license that can be
|
||||
# found in the LICENSE file.
|
||||
###############################################################################
|
||||
#
|
||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
source $SCRIPT_DIR/ios_setup.sh
|
||||
|
||||
TARGET_DIR=$1
|
||||
|
||||
ios_pull "*" "$TARGET_DIR"
|
||||
|
18
platform_tools/ios/bin/ios_pull_if_needed
Executable file
18
platform_tools/ios/bin/ios_pull_if_needed
Executable file
@ -0,0 +1,18 @@
|
||||
#!/bin/bash
|
||||
|
||||
###############################################################################
|
||||
# Copyright 2015 Google Inc.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license that can be
|
||||
# found in the LICENSE file.
|
||||
###############################################################################
|
||||
#
|
||||
# Pull the given file/directory off the device.
|
||||
#
|
||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
source $SCRIPT_DIR/ios_setup.sh
|
||||
|
||||
HOST_PATH=$1
|
||||
DEVICE_PATH=$2
|
||||
|
||||
ios_pull $HOST_PATH $DEVICE_PATH
|
18
platform_tools/ios/bin/ios_push_file
Executable file
18
platform_tools/ios/bin/ios_push_file
Executable file
@ -0,0 +1,18 @@
|
||||
#!/bin/bash
|
||||
###############################################################################
|
||||
# Copyright 2015 Google Inc.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license that can be
|
||||
# found in the LICENSE file.
|
||||
###############################################################################
|
||||
|
||||
# Fail-fast if anything in the script fails.
|
||||
set -e
|
||||
|
||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
source $SCRIPT_DIR/ios_setup.sh
|
||||
|
||||
HOST_PATH=$1
|
||||
DEVICE_PATH=$2
|
||||
|
||||
ios_push $HOST_PATH $DEVICE_PATH
|
15
platform_tools/ios/bin/ios_push_if_needed
Executable file
15
platform_tools/ios/bin/ios_push_if_needed
Executable file
@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
###############################################################################
|
||||
# Copyright 2015 Google Inc.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license that can be
|
||||
# found in the LICENSE file.
|
||||
###############################################################################
|
||||
|
||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
source $SCRIPT_DIR/ios_setup.sh
|
||||
|
||||
HOST_PATH=$1
|
||||
DEVICE_PATH=$2
|
||||
|
||||
ios_push $HOST_PATH $DEVICE_PATH
|
12
platform_tools/ios/bin/ios_rmdir
Executable file
12
platform_tools/ios/bin/ios_rmdir
Executable file
@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
###############################################################################
|
||||
# Copyright 2015 Google Inc.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license that can be
|
||||
# found in the LICENSE file.
|
||||
###############################################################################
|
||||
|
||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
source $SCRIPT_DIR/ios_setup.sh
|
||||
|
||||
ios_rmdir $1
|
26
platform_tools/ios/bin/ios_run_skia
Executable file
26
platform_tools/ios/bin/ios_run_skia
Executable file
@ -0,0 +1,26 @@
|
||||
#!/bin/bash
|
||||
###############################################################################
|
||||
# Copyright 2015 Google Inc.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license that can be
|
||||
# found in the LICENSE file.
|
||||
###############################################################################
|
||||
#
|
||||
# ios_run_skia: starts the correct skia program on the device, prints the
|
||||
# output, and kills the app if interrupted.
|
||||
|
||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
source $SCRIPT_DIR/ios_setup.sh
|
||||
|
||||
# (Re-)Install the app to create the necessary directories.
|
||||
ios_uninstall_app
|
||||
ios_install_app
|
||||
|
||||
# Move the resources to the Documents forlder of the iOS device.
|
||||
# Note: The iOSShell app expects 'resources' in the Documents folder.
|
||||
ios_push "${SKIA_SRC_DIR}/resources" ""
|
||||
|
||||
# Run the application.
|
||||
ios-deploy -I -m -b "$SKIA_SRC_DIR/xcodebuild/${BUILDTYPE}-iphoneos/iOSShell.app --args '""$ARGS""'"
|
||||
|
||||
#ios-deploy -I -m -b "$SKIA_SRC_DIR/xcodebuild/${BUILDTYPE}-iphoneos/iOSShell.app --args '""$ARGS""'-v --writePath results --dm --nogpu --threads 0 --src gm tests --config 8888 --match ~Threaded ~Math ~VarAlloc'
|
179
platform_tools/ios/bin/ios_setup.sh
Executable file
179
platform_tools/ios/bin/ios_setup.sh
Executable file
@ -0,0 +1,179 @@
|
||||
#!/bin/bash
|
||||
###############################################################################
|
||||
# Copyright 2015 Google Inc.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license that can be
|
||||
# found in the LICENSE file.
|
||||
###############################################################################
|
||||
#
|
||||
# ios_setup.sh: Sets environment variables used by other iOS scripts.
|
||||
|
||||
# File system location where we mount the ios devices.
|
||||
IOS_MOUNT_POINT="/tmp/mnt_iosdevice"
|
||||
|
||||
# Location on the ios device where all data are stored. This is
|
||||
# relative to the mount point.
|
||||
IOS_DOCS_DIR="Documents"
|
||||
|
||||
# Temporary location to assemble the app into an .ipa package.
|
||||
IOS_PCKG_DIR="/tmp/ios_pckg"
|
||||
|
||||
# Bundle id of the app that runs the tests.
|
||||
TEST_RUNNER_BUNDLE_ID="com.google.iOSShell"
|
||||
|
||||
# Directory with the Skia source.
|
||||
SKIA_SRC_DIR=$(cd "${SCRIPT_DIR}/../../.."; pwd)
|
||||
|
||||
# BuildTYPE is 'Debug' by default.
|
||||
BUILDTYPE="Debug"
|
||||
|
||||
# Provisioning profile - this needs to be set up on the local machine.
|
||||
PROVISIONING_PROFILE="9e88090d-abed-4e89-b106-3eff3512d31f"
|
||||
|
||||
# Code Signing identity - this needs to be set up on the local machine.
|
||||
CODE_SIGN_IDENTITY="iPhone Developer: Google Development (3F4Y5873JF)"
|
||||
|
||||
IOS_BUNDLE_ID="com.google.iOSShell"
|
||||
|
||||
IOS_RESULTS_DIR="results"
|
||||
|
||||
if [[ $# -ge 1 ]]; then
|
||||
BUILDTYPE=$1
|
||||
fi
|
||||
|
||||
set -x
|
||||
|
||||
ios_uninstall_app() {
|
||||
ideviceinstaller -U "$IOS_BUNDLE_ID"
|
||||
}
|
||||
|
||||
ios_install_app() {
|
||||
rm -rf $IOS_PCKG_DIR
|
||||
mkdir -p $IOS_PCKG_DIR/Payload # this directory must be named 'Payload'
|
||||
cp -rf "${SKIA_SRC_DIR}/xcodebuild/${BUILDTYPE}-iphoneos/iOSShell.app" "${IOS_PCKG_DIR}/Payload/"
|
||||
local RET_DIR=`pwd`
|
||||
cd $IOS_PCKG_DIR
|
||||
zip -r iOSShell.ipa Payload
|
||||
ideviceinstaller -i ./iOSShell.ipa
|
||||
cd $RET_DIR
|
||||
}
|
||||
|
||||
ios_rmdir() {
|
||||
local TARGET="$IOS_MOUNT_POINT/$IOS_DOCS_DIR/$1"
|
||||
|
||||
ios_mount
|
||||
rm -rf "$TARGET"
|
||||
ios_umount
|
||||
}
|
||||
|
||||
ios_mkdir() {
|
||||
local TARGET="$IOS_MOUNT_POINT/$IOS_DOCS_DIR/$1"
|
||||
ios_mount
|
||||
mkdir -p "$TARGET"
|
||||
ios_umount
|
||||
}
|
||||
|
||||
# ios_mount: mounts the iOS device for reading or writing.
|
||||
ios_mount() {
|
||||
# If this is already mounted we return.
|
||||
if $(mount | grep --quiet "$IOS_MOUNT_POINT"); then
|
||||
echo "Device already mounted at: $IOS_MOUNT_POINT - Unmounting."
|
||||
ios_umount
|
||||
fi
|
||||
|
||||
# Ensure there is a mount directory.
|
||||
if [[ ! -d "$IOS_MOUNT_POINT" ]]; then
|
||||
mkdir -p $IOS_MOUNT_POINT
|
||||
fi
|
||||
ifuse --container $TEST_RUNNER_BUNDLE_ID $IOS_MOUNT_POINT
|
||||
sleep 1
|
||||
echo "Successfully mounted device."
|
||||
}
|
||||
|
||||
# ios_umount: unmounts the ios device.
|
||||
ios_umount() {
|
||||
umount $IOS_MOUNT_POINT
|
||||
sleep 1
|
||||
}
|
||||
|
||||
# ios_restart: restarts the iOS device.
|
||||
ios_restart() {
|
||||
idevicediagnostics restart
|
||||
}
|
||||
|
||||
# ios_pull(ios_src, host_dst): Copies the content of ios_src to host_dst.
|
||||
# The path is relative to the 'Documents' folder on the device.
|
||||
ios_pull() {
|
||||
# read input params
|
||||
local IOS_SRC="$1"
|
||||
local HOST_DST="$2"
|
||||
|
||||
ios_mount
|
||||
cp -r $IOS_MOUNT_POINT/$IOS_DOCS_DIR/$IOS_SRC $HOST_DST
|
||||
ios_umount
|
||||
}
|
||||
|
||||
# ios_push(host_src, ios_dst)
|
||||
ios_push() {
|
||||
# read input params
|
||||
local HOST_SRC="$1"
|
||||
local IOS_DST="$IOS_MOUNT_POINT/$IOS_DOCS_DIR/$2"
|
||||
|
||||
ios_mount
|
||||
rm -rf $IOS_DST
|
||||
mkdir -p "$(dirname $IOS_DST)"
|
||||
cp -r "$HOST_SRC" "$IOS_DST"
|
||||
ios_umount
|
||||
}
|
||||
|
||||
ios_path_exists() {
|
||||
local TARGET_PATH="$IOS_MOUNT_POINT/$IOS_DOCS_DIR/$1"
|
||||
local RET=1
|
||||
ios_mount
|
||||
if [[ -e $TARGET_PATH ]]; then
|
||||
RET=0
|
||||
fi
|
||||
ios_umount
|
||||
return $RET
|
||||
}
|
||||
|
||||
# ANDROID_LS=`$ADB $DEVICE_SERIAL shell ls -ld $ANDROID_DST`
|
||||
# HOST_LS=`ls -ld $HOST_SRC`
|
||||
# if [ "${ANDROID_LS:0:1}" == "d" -a "${HOST_LS:0:1}" == "-" ];
|
||||
# then
|
||||
# ANDROID_DST="${ANDROID_DST}/$(basename ${HOST_SRC})"
|
||||
# fi
|
||||
|
||||
|
||||
# ANDROID_LS=`$ADB $DEVICE_SERIAL shell ls -ld $ANDROID_DST`
|
||||
# if [ "${ANDROID_LS:0:1}" == "-" ]; then
|
||||
# #get the MD5 for dst and src
|
||||
# ANDROID_MD5=`$ADB $DEVICE_SERIAL shell md5 $ANDROID_DST`
|
||||
# if [ $(uname) == "Darwin" ]; then
|
||||
# HOST_MD5=`md5 -q $HOST_SRC`
|
||||
# else
|
||||
# HOST_MD5=`md5sum $HOST_SRC`
|
||||
# fi
|
||||
|
||||
# if [ "${ANDROID_MD5:0:32}" != "${HOST_MD5:0:32}" ]; then
|
||||
# echo -n "$ANDROID_DST "
|
||||
# $ADB $DEVICE_SERIAL push $HOST_SRC $ANDROID_DST
|
||||
# fi
|
||||
# elif [ "${ANDROID_LS:0:1}" == "d" ]; then
|
||||
# for FILE_ITEM in `ls $HOST_SRC`; do
|
||||
# adb_push_if_needed "${HOST_SRC}/${FILE_ITEM}" "${ANDROID_DST}/${FILE_ITEM}"
|
||||
# done
|
||||
# else
|
||||
# HOST_LS=`ls -ld $HOST_SRC`
|
||||
# if [ "${HOST_LS:0:1}" == "d" ]; then
|
||||
# $ADB $DEVICE_SERIAL shell mkdir -p $ANDROID_DST
|
||||
# adb_push_if_needed $HOST_SRC $ANDROID_DST
|
||||
# else
|
||||
# echo -n "$ANDROID_DST "
|
||||
# $ADB $DEVICE_SERIAL shell mkdir -p "$(dirname "$ANDROID_DST")"
|
||||
# $ADB $DEVICE_SERIAL push $HOST_SRC $ANDROID_DST
|
||||
# fi
|
||||
# fi
|
||||
# }
|
||||
|
||||
# setup_device "${DEVICE_ID}"
|
15
platform_tools/ios/bin/ios_umount.sh
Executable file
15
platform_tools/ios/bin/ios_umount.sh
Executable file
@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
###############################################################################
|
||||
# Copyright 2015 Google Inc.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license that can be
|
||||
# found in the LICENSE file.
|
||||
###############################################################################
|
||||
#
|
||||
# Mount the ios device.
|
||||
#
|
||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
source $SCRIPT_DIR/ios_setup.sh
|
||||
|
||||
ios_umount
|
@ -61,7 +61,6 @@ int dm_main();
|
||||
|
||||
IOS_launch_type set_cmd_line_args(int argc, char *argv[], const char* resourceDir) {
|
||||
SkCommandLineFlags::Parse(argc, argv);
|
||||
SetResourcePath(resourceDir);
|
||||
if (FLAGS_nanobench) {
|
||||
return nanobench_main() ? kError_iOSLaunchType : kTool_iOSLaunchType;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user