mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
b98a05ebd3
Summary: Some changes are required to this scripts in order to successfully run it on Sandcastle: - the packager needs to be started before the test - no xcpretty available, piping to anything else (e.g. `cat`) fails Closes https://github.com/facebook/react-native/pull/8123 Differential Revision: D3436833 Pulled By: avaly fbshipit-source-id: e284d6eaf370720b9a0f2468b114a596028f7107
44 lines
977 B
Bash
Executable File
44 lines
977 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
SCRIPTS=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
ROOT=$(dirname $SCRIPTS)
|
|
|
|
cd $ROOT
|
|
|
|
function cleanup {
|
|
EXIT_CODE=$?
|
|
set +e
|
|
|
|
if [ $EXIT_CODE -ne 0 ];
|
|
then
|
|
WATCHMAN_LOGS=/usr/local/Cellar/watchman/3.1/var/run/watchman/$USER.log
|
|
[ -f $WATCHMAN_LOGS ] && cat $WATCHMAN_LOGS
|
|
fi
|
|
}
|
|
trap cleanup EXIT
|
|
|
|
if [ -z "$XCODE_DESTINATION" ]; then
|
|
XCODE_DESTINATION="platform=iOS Simulator,name=iPhone 5,OS=9.3"
|
|
fi
|
|
|
|
# Support for environments without xcpretty installed
|
|
set +e
|
|
OUTPUT_TOOL=$(which xcpretty)
|
|
set -e
|
|
if [ -z "$OUTPUT_TOOL" ]; then
|
|
OUTPUT_TOOL="sed"
|
|
fi
|
|
|
|
# TODO: We use xcodebuild because xctool would stall when collecting info about
|
|
# the tests before running them. Switch back when this issue with xctool has
|
|
# been resolved.
|
|
xcodebuild \
|
|
-project Examples/UIExplorer/UIExplorer.xcodeproj \
|
|
-scheme UIExplorer \
|
|
-sdk iphonesimulator \
|
|
-destination "$XCODE_DESTINATION" \
|
|
test \
|
|
| $OUTPUT_TOOL && exit ${PIPESTATUS[0]}
|