2016-10-06 10:16:41 +00:00
|
|
|
#!/bin/bash
|
2018-09-11 22:27:47 +00:00
|
|
|
# Copyright (c) Facebook, Inc. and its affiliates.
|
2018-09-07 20:08:05 +00:00
|
|
|
#
|
|
|
|
# This source code is licensed under the MIT license found in the
|
|
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
#
|
2017-04-27 16:05:22 +00:00
|
|
|
# Script used to run tvOS tests.
|
|
|
|
# If not arguments are passed to the script, it will only compile
|
2017-05-06 03:50:47 +00:00
|
|
|
# the RNTester.
|
2017-04-27 16:05:22 +00:00
|
|
|
# If the script is called with a single argument "test", we'll
|
2017-05-06 03:50:47 +00:00
|
|
|
# also run the RNTester integration test (needs JS and packager):
|
2017-04-27 16:05:22 +00:00
|
|
|
# ./objc-test-tvos.sh test
|
|
|
|
|
2018-09-07 20:08:05 +00:00
|
|
|
set -ex
|
|
|
|
|
2016-10-06 10:16:41 +00:00
|
|
|
SCRIPTS=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
2017-03-31 19:40:36 +00:00
|
|
|
ROOT=$(dirname "$SCRIPTS")
|
2016-10-06 10:16:41 +00:00
|
|
|
|
2017-03-31 19:40:36 +00:00
|
|
|
cd "$ROOT"
|
2016-10-06 10:16:41 +00:00
|
|
|
|
2018-06-10 23:53:22 +00:00
|
|
|
export TEST_NAME="tvOS"
|
|
|
|
export SCHEME="RNTester-tvOS"
|
|
|
|
export SDK="appletvsimulator"
|
2018-12-04 20:01:07 +00:00
|
|
|
export DESTINATION="platform=tvOS Simulator,name=Apple TV,OS=12.1"
|
2017-03-06 22:10:07 +00:00
|
|
|
|
2017-04-27 16:05:22 +00:00
|
|
|
# If there's a "test" argument, pass it to the test script.
|
|
|
|
. ./scripts/objc-test.sh $1
|