Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 5d0fa1e

Browse files
committed
Remove --enable-software-rendering from iOS scenario tests
1 parent cb58abd commit 5d0fa1e

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

testing/scenario_app/ios/Scenarios/ScenariosUITests/PlatformViewGestureRecognizerTests.m

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ - (void)setUp {
1818

1919
- (void)testRejectPolicyUtilTouchesEnded {
2020
XCUIApplication* app = [[XCUIApplication alloc] init];
21-
app.launchArguments =
22-
@[ @"--gesture-reject-after-touches-ended", @"--enable-software-rendering" ];
21+
app.launchArguments = @[ @"--gesture-reject-after-touches-ended" ];
2322
[app launch];
2423

2524
NSPredicate* predicateToFindPlatformView =

testing/scenario_app/ios/Scenarios/ScenariosUITests/SpawnEngineTest.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ - (void)testSpawnEngineWorks {
1313
self.continueAfterFailure = NO;
1414

1515
XCUIApplication* application = [[XCUIApplication alloc] init];
16-
application.launchArguments = @[ @"--spawn-engine-works", @"--enable-software-rendering" ];
16+
application.launchArguments = @[ @"--spawn-engine-works" ];
1717
[application launch];
1818

1919
XCUIElement* addTextField = application.textFields[@"ready"];

testing/scenario_app/ios/Scenarios/ScenariosUITests/UnobstructedPlatformViewTests.m

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ - (void)setUp {
2323
// +---+
2424
- (void)testNoOverlay {
2525
XCUIApplication* app = [[XCUIApplication alloc] init];
26-
app.launchArguments =
27-
@[ @"--platform-view-no-overlay-intersection", @"--enable-software-rendering" ];
26+
app.launchArguments = @[ @"--platform-view-no-overlay-intersection" ];
2827
[app launch];
2928

3029
XCUIElement* platform_view = app.otherElements[@"platform_view[0]"];

testing/scenario_app/run_ios_tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ if set -o pipefail && xcodebuild -sdk iphonesimulator \
8585
-destination 'platform=iOS Simulator,OS=16.2,name=iPhone SE (3rd generation)' \
8686
clean test \
8787
FLUTTER_ENGINE="$FLUTTER_ENGINE" \
88-
-skip-testing "ScenariosUITests/BogusFontTextTest/testFontRenderingWhenSuppliedWithBogusFont,ScenarioUITests/PlatformViewMutationLargeClipRRectWithTransformTests/testPlatformView,ScenarioUITests/MultiplePlatformViewsTest/testPlatformView,ScenarioUITests/PlatformViewWithOtherBackdropFilterTests/testPlatformView,ScenarioUITests/TwoPlatformViewsWithOtherBackDropFilterTests/testPlatformView,ScenarioUITests/PlatformViewMutationClipPathTests/testPlatformView,ScenarioUITests/PlatformViewMutationClipRectWithTransformTests/testPlatformView,ScenarioUITests/PlatformViewGestureRecognizerTests/testRejectPolicyUtilTouchesEnded,ScenarioUITests/NonFullScreenFlutterViewPlatformViewUITests/testPlatformView,ScenarioUITests/PlatformViewUITests/testPlatformView,ScenarioUITests/PlatformViewMutationClipRectAfterMovedTests/testPlatformView,ScenarioUITests/PlatformViewMutationClipRectTests/testPlatformView,ScenarioUITests/TwoPlatformViewClipPathTests/testPlatformView,ScenarioUITests/MultiplePlatformViewsBackgroundForegroundTest/testPlatformView,ScenarioUITests/PlatformViewMutationOpacityTests/testPlatformView,ScenarioUITests/PlatformViewMutationClipRRectTests/testPlatformView,ScenarioUITests/PlatformViewMutationClipRRectWithTransformTests/testPlatformView,ScenarioUITests/PlatformViewMutationClipPathWithTransformTests/testPlatformView,ScenarioUITests/SpawnEngineTest/testSpawnEngineWorks,ScenarioUITests/PlatformViewRotation/testPlatformView,ScenarioUITests/TwoPlatformViewClipRRectTests/testPlatformView,ScenarioUITests/TwoPlatformViewClipRectTests/testPlatformView,ScenarioUITests/RenderingSelectionTest/testSoftwareRendering,ScenarioUITests/UnobstructedPlatformViewTests/testMultiplePlatformViewsWithOverlays,ScenarioUITests/UnobstructedPlatformViewTests/testNoOverlay,ScenarioUITests/PlatformViewMutationTransformTests/testPlatformView,ScenarioUITests/PlatformViewMutationLargeClipRRectTests/testPlatformView,ScenarioUITests/PlatformViewWithNegativeOtherBackDropFilterTests/testPlatformView" \
88+
-skip-testing "ScenariosUITests/RenderingSelectionTest/testSoftwareRendering,ScenariosUITests/PlatformViewMutationLargeClipRRectWithTransformTests/testPlatformView,ScenariosUITests/MultiplePlatformViewsTest/testPlatformView,ScenariosUITests/PlatformViewWithOtherBackdropFilterTests/testPlatformView,ScenariosUITests/TwoPlatformViewsWithOtherBackDropFilterTests/testPlatformView,ScenariosUITests/PlatformViewMutationClipPathTests/testPlatformView,ScenariosUITests/PlatformViewMutationClipRectWithTransformTests/testPlatformView,ScenariosUITests/NonFullScreenFlutterViewPlatformViewUITests/testPlatformView,ScenariosUITests/PlatformViewUITests/testPlatformView,ScenariosUITests/PlatformViewMutationClipRectAfterMovedTests/testPlatformView,ScenariosUITests/PlatformViewMutationClipRectTests/testPlatformView,ScenariosUITests/TwoPlatformViewClipPathTests/testPlatformView,ScenariosUITests/MultiplePlatformViewsBackgroundForegroundTest/testPlatformView,ScenariosUITests/PlatformViewMutationOpacityTests/testPlatformView,ScenariosUITests/PlatformViewMutationClipRRectTests/testPlatformView,ScenariosUITests/PlatformViewMutationClipRRectWithTransformTests/testPlatformView,ScenariosUITests/PlatformViewMutationClipPathWithTransformTests/testPlatformView,ScenariosUITests/PlatformViewRotation/testPlatformView,ScenariosUITests/TwoPlatformViewClipRRectTests/testPlatformView,ScenariosUITests/TwoPlatformViewClipRectTests/testPlatformView,ScenariosUITests/UnobstructedPlatformViewTests/testMultiplePlatformViewsWithOverlays,ScenariosUITests/UnobstructedPlatformViewTests/testNoOverlay,ScenariosUITests/PlatformViewMutationTransformTests/testPlatformView,ScenariosUITests/PlatformViewMutationLargeClipRRectTests/testPlatformView,ScenariosUITests/PlatformViewWithNegativeOtherBackDropFilterTests/testPlatformView" \
8989
INFOPLIST_FILE="Scenarios/Info_Impeller.plist"; then # Plist with FLTEnableImpeller=YES
9090
echo "test success."
9191
else

0 commit comments

Comments
 (0)