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

Commit adf74ba

Browse files
author
Chris Yang
committed
fix test
1 parent 5cb6b81 commit adf74ba

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!--Dummy plist file to make the impeller version of scenario test happy-->
2+
<?xml version="1.0" encoding="UTF-8"?>
3+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
4+
<plist version="1.0">
5+
<dict>
6+
<!--This flag does not do anything, it only makes the xcodebuild command happy-->
7+
<key>FLTEnableImpeller</key>
8+
<true/>
9+
<key>UIApplicationSceneManifest</key>
10+
<dict>
11+
<key>UIApplicationSupportsMultipleScenes</key>
12+
<false/>
13+
<key>UISceneConfigurations</key>
14+
<dict>
15+
<key>UIWindowSceneSessionRoleApplication</key>
16+
<array>
17+
<dict>
18+
<key>UISceneConfigurationName</key>
19+
<string>Default Configuration</string>
20+
<key>UISceneDelegateClassName</key>
21+
<string>SceneDelegate</string>
22+
<key>UISceneStoryboardFile</key>
23+
<string>Main</string>
24+
</dict>
25+
</array>
26+
</dict>
27+
</dict>
28+
</dict>
29+
</plist>

testing/scenario_app/run_ios_tests.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,9 @@ if set -o pipefail && xcodebuild -sdk iphonesimulator \
109109
-skip-testing ScenariosUITests/TwoPlatformViewClipRRectTests/testPlatformView \
110110
-skip-testing ScenariosUITests/TwoPlatformViewsWithOtherBackDropFilterTests/testPlatformView \
111111
-skip-testing ScenariosUITests/UnobstructedPlatformViewTests/testMultiplePlatformViewsWithOverlays \
112-
INFOPLIST_FILE="Scenarios/Info_Impeller.plist"; then # Plist with FLTEnableImpeller=YES
112+
# Plist with FLTEnableImpeller=YES, all projects in the workspace requires this file.
113+
# For example, FlutterAppExtensionTestHost has a dummy file under the below directory.
114+
INFOPLIST_FILE="Scenarios/Info_Impeller.plist"; then
113115
echo "test success."
114116
else
115117
echo "test failed."

0 commit comments

Comments
 (0)