From 7ebab5dc8a76fb0c8d36ada2902706d105a6e29c Mon Sep 17 00:00:00 2001 From: xster Date: Wed, 9 Sep 2020 18:22:45 -0700 Subject: [PATCH] Delete unused iOS test scripts after LUCI change (#18712) This deletes old LUCI build scripts that have been unused since https://flutter-review.googlesource.com/c/recipes/+/3160 --- .../ios/IosUnitTests/build_and_run_tests.sh | 24 ------------------- testing/ios/IosUnitTests/run_tests.sh | 13 ---------- testing/scenario_app/run_ios_tests.sh | 3 --- 3 files changed, 40 deletions(-) delete mode 100755 testing/ios/IosUnitTests/build_and_run_tests.sh delete mode 100755 testing/ios/IosUnitTests/run_tests.sh diff --git a/testing/ios/IosUnitTests/build_and_run_tests.sh b/testing/ios/IosUnitTests/build_and_run_tests.sh deleted file mode 100755 index 072911efd..000000000 --- a/testing/ios/IosUnitTests/build_and_run_tests.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh - -set -e - -TESTING_DIR=$(dirname "$0") -pushd $TESTING_DIR - -FLUTTER_ENGINE=ios_debug_sim_unopt - -if [ $# -eq 1 ]; then - FLUTTER_ENGINE=$1 -fi - -cd ../../../.. - -if [ ! -d "out/$FLUTTER_ENGINE" ]; then - echo "You must GN to generate out/$FLUTTER_ENGINE" - echo "example: ./flutter/tools/gn --ios --simulator --unoptimized" - exit 1 -fi - -autoninja -C out/$FLUTTER_ENGINE ios_test_flutter -popd -$TESTING_DIR/run_tests.sh $FLUTTER_ENGINE diff --git a/testing/ios/IosUnitTests/run_tests.sh b/testing/ios/IosUnitTests/run_tests.sh deleted file mode 100755 index a06335283..000000000 --- a/testing/ios/IosUnitTests/run_tests.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -FLUTTER_ENGINE=ios_debug_sim_unopt - -TESTING_DIR=$(dirname "$0") -pushd $TESTING_DIR - -if [ $# -eq 1 ]; then - FLUTTER_ENGINE=$1 -fi - -../../run_tests.py --variant $FLUTTER_ENGINE --type objc --ios-variant $FLUTTER_ENGINE - -popd diff --git a/testing/scenario_app/run_ios_tests.sh b/testing/scenario_app/run_ios_tests.sh index 42088ce0d..225f88e97 100755 --- a/testing/scenario_app/run_ios_tests.sh +++ b/testing/scenario_app/run_ios_tests.sh @@ -33,9 +33,6 @@ if [[ $# -eq 1 ]]; then FLUTTER_ENGINE="$1" fi -# Delete after LUCI push. -"$SCRIPT_DIR/compile_ios_jit.sh" "$SRC_DIR/out/host_debug_unopt" "$SRC_DIR/out/$FLUTTER_ENGINE/clang_x64" - cd ios/Scenarios set -o pipefail && xcodebuild -sdk iphonesimulator \ -scheme Scenarios \ -- GitLab