Title: [215046] trunk
Revision
215046
Author
commit-qu...@webkit.org
Date
2017-04-06 11:48:11 -0700 (Thu, 06 Apr 2017)

Log Message

WebRTC tests gardening
https://bugs.webkit.org/show_bug.cgi?id=170508

Patch by Youenn Fablet <you...@apple.com> on 2017-04-06
Reviewed by Eric Carlson.

Source/_javascript_Core:

* Configurations/FeatureDefines.xcconfig:

Source/WebCore:

* Configurations/FeatureDefines.xcconfig: Changing webrtc enabling for ios.

Source/WebCore/PAL:

* Configurations/FeatureDefines.xcconfig:

Source/WebKit/mac:

* Configurations/FeatureDefines.xcconfig:

Source/WebKit2:

* Configurations/FeatureDefines.xcconfig:

Tools:

* TestWebKitAPI/Configurations/FeatureDefines.xcconfig:

LayoutTests:

* platform/ios-wk1/TestExpectations:
* platform/ios-wk2/TestExpectations:
* platform/ios/TestExpectations:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (215045 => 215046)


--- trunk/LayoutTests/ChangeLog	2017-04-06 18:35:47 UTC (rev 215045)
+++ trunk/LayoutTests/ChangeLog	2017-04-06 18:48:11 UTC (rev 215046)
@@ -1,3 +1,14 @@
+2017-04-06  Youenn Fablet  <you...@apple.com>
+
+        WebRTC tests gardening
+        https://bugs.webkit.org/show_bug.cgi?id=170508
+
+        Reviewed by Eric Carlson.
+
+        * platform/ios-wk1/TestExpectations:
+        * platform/ios-wk2/TestExpectations:
+        * platform/ios/TestExpectations:
+
 2017-04-06  Antti Koivisto  <an...@apple.com>
 
         Implement testing mode for disk cache

Modified: trunk/LayoutTests/platform/ios/TestExpectations (215045 => 215046)


--- trunk/LayoutTests/platform/ios/TestExpectations	2017-04-06 18:35:47 UTC (rev 215045)
+++ trunk/LayoutTests/platform/ios/TestExpectations	2017-04-06 18:48:11 UTC (rev 215046)
@@ -59,9 +59,6 @@
 fast/history/page-cache-running-audiocontext.html
 fast/history/page-cache-suspended-audiocontext.html
 
-# WebRTC tests are skipped on iOS for now.
-fast/events/constructors/media-stream-event-constructor.html
-
 # No wheel events on iOS
 fast/scrolling/iframe-scrollable-after-back.html [ Skip ]
 fast/scrolling/overflow-scrollable-after-back.html [ Skip ]

Modified: trunk/LayoutTests/platform/ios-wk1/TestExpectations (215045 => 215046)


--- trunk/LayoutTests/platform/ios-wk1/TestExpectations	2017-04-06 18:35:47 UTC (rev 215045)
+++ trunk/LayoutTests/platform/ios-wk1/TestExpectations	2017-04-06 18:48:11 UTC (rev 215046)
@@ -10,6 +10,7 @@
 # Skip WebRTC for now in WK1
 imported/w3c/web-platform-tests/webrtc [ Skip ]
 webrtc [ Skip ]
+fast/events/constructors/media-stream-event-constructor.html
 
 # <rdar://problem/6501130> LayoutTests: Enable editing tests after we support editing
 editing/deleting/4922367.html

Modified: trunk/LayoutTests/platform/ios-wk2/TestExpectations (215045 => 215046)


--- trunk/LayoutTests/platform/ios-wk2/TestExpectations	2017-04-06 18:35:47 UTC (rev 215045)
+++ trunk/LayoutTests/platform/ios-wk2/TestExpectations	2017-04-06 18:48:11 UTC (rev 215046)
@@ -1842,6 +1842,10 @@
 
 webkit.org/b/157589 fast/text-autosizing/ios/text-autosizing-after-back.html [ Pass Timeout ]
 
+#See webkit.org/b/170508
+webrtc/video.html [ Failure ]
+webrtc/video-with-receiver.html [ Failure ]
+
 # started to fail after new snapshotting in r202532
 webkit.org/b/150942 animations/multiple-backgrounds.html [ Pass ImageOnlyFailure ]
 compositing/contents-scale/rasterization-scale.html [ ImageOnlyFailure ]
@@ -1921,9 +1925,6 @@
 
 webkit.org/b/166025 http/tests/fetch/fetching-same-resource-with-diffferent-options.html [ Pass Failure ]
 
-imported/w3c/web-platform-tests/webrtc [ Skip ]
-webrtc [ Skip ]
-
 # Skipped because there is no key to show the context menu
 fast/events/context-activated-by-key-event.html [ Skip ]
 

Modified: trunk/Source/_javascript_Core/ChangeLog (215045 => 215046)


--- trunk/Source/_javascript_Core/ChangeLog	2017-04-06 18:35:47 UTC (rev 215045)
+++ trunk/Source/_javascript_Core/ChangeLog	2017-04-06 18:48:11 UTC (rev 215046)
@@ -1,3 +1,12 @@
+2017-04-06  Youenn Fablet  <you...@apple.com>
+
+        WebRTC tests gardening
+        https://bugs.webkit.org/show_bug.cgi?id=170508
+
+        Reviewed by Eric Carlson.
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2017-04-06  Guillaume Emont  <guijem...@igalia.com>
 
         [JSC][MIPS][DFG] Use x86 generic HasOwnProperty

Modified: trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig (215045 => 215046)


--- trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig	2017-04-06 18:35:47 UTC (rev 215045)
+++ trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig	2017-04-06 18:48:11 UTC (rev 215046)
@@ -184,9 +184,8 @@
 ENABLE_WEB_RTC[sdk=watch*] = ;
 ENABLE_WEB_RTC[sdk=appletv*] = ;
 ENABLE_WEB_RTC[sdk=iphone*] = $(ENABLE_WEB_RTC_ios);
-ENABLE_WEB_RTC_ios[arch=arm64] = $(ENABLE_WEB_RTC_ios_$(IPHONEOS_DEPLOYMENT_TARGET:base))
-ENABLE_WEB_RTC_ios[arch=x86_64] = $(ENABLE_WEB_RTC_ios_$(IPHONEOS_DEPLOYMENT_TARGET:base))
-ENABLE_WEB_RTC_ios_11 = ENABLE_WEB_RTC;
+ENABLE_WEB_RTC_ios[arch=arm64] = ENABLE_WEB_RTC;
+ENABLE_WEB_RTC_ios[arch=x86_64] = ENABLE_WEB_RTC;
 ENABLE_WEB_RTC[sdk=macosx*] = $(ENABLE_WEB_RTC_macosx);
 ENABLE_WEB_RTC_macosx[arch=x86_64] = $(ENABLE_WEB_RTC_macosx_$(CONFIGURATION));
 ENABLE_WEB_RTC_macosx_Debug = ENABLE_WEB_RTC;

Modified: trunk/Source/WebCore/ChangeLog (215045 => 215046)


--- trunk/Source/WebCore/ChangeLog	2017-04-06 18:35:47 UTC (rev 215045)
+++ trunk/Source/WebCore/ChangeLog	2017-04-06 18:48:11 UTC (rev 215046)
@@ -1,3 +1,12 @@
+2017-04-06  Youenn Fablet  <you...@apple.com>
+
+        WebRTC tests gardening
+        https://bugs.webkit.org/show_bug.cgi?id=170508
+
+        Reviewed by Eric Carlson.
+
+        * Configurations/FeatureDefines.xcconfig: Changing webrtc enabling for ios.
+
 2017-04-06  Andreas Kling  <akl...@apple.com>
 
         Stop forcing CA commit when memory pressure changes.

Modified: trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig (215045 => 215046)


--- trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig	2017-04-06 18:35:47 UTC (rev 215045)
+++ trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig	2017-04-06 18:48:11 UTC (rev 215046)
@@ -184,9 +184,8 @@
 ENABLE_WEB_RTC[sdk=watch*] = ;
 ENABLE_WEB_RTC[sdk=appletv*] = ;
 ENABLE_WEB_RTC[sdk=iphone*] = $(ENABLE_WEB_RTC_ios);
-ENABLE_WEB_RTC_ios[arch=arm64] = $(ENABLE_WEB_RTC_ios_$(IPHONEOS_DEPLOYMENT_TARGET:base))
-ENABLE_WEB_RTC_ios[arch=x86_64] = $(ENABLE_WEB_RTC_ios_$(IPHONEOS_DEPLOYMENT_TARGET:base))
-ENABLE_WEB_RTC_ios_11 = ENABLE_WEB_RTC;
+ENABLE_WEB_RTC_ios[arch=arm64] = ENABLE_WEB_RTC;
+ENABLE_WEB_RTC_ios[arch=x86_64] = ENABLE_WEB_RTC;
 ENABLE_WEB_RTC[sdk=macosx*] = $(ENABLE_WEB_RTC_macosx);
 ENABLE_WEB_RTC_macosx[arch=x86_64] = $(ENABLE_WEB_RTC_macosx_$(CONFIGURATION));
 ENABLE_WEB_RTC_macosx_Debug = ENABLE_WEB_RTC;

Modified: trunk/Source/WebCore/PAL/ChangeLog (215045 => 215046)


--- trunk/Source/WebCore/PAL/ChangeLog	2017-04-06 18:35:47 UTC (rev 215045)
+++ trunk/Source/WebCore/PAL/ChangeLog	2017-04-06 18:48:11 UTC (rev 215046)
@@ -1,3 +1,12 @@
+2017-04-06  Youenn Fablet  <you...@apple.com>
+
+        WebRTC tests gardening
+        https://bugs.webkit.org/show_bug.cgi?id=170508
+
+        Reviewed by Eric Carlson.
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2017-04-03  Michael Catanzaro  <mcatanz...@igalia.com>
 
         Unreviewed, attempt to fix build with libgcrypt < 1.7.0

Modified: trunk/Source/WebCore/PAL/Configurations/FeatureDefines.xcconfig (215045 => 215046)


--- trunk/Source/WebCore/PAL/Configurations/FeatureDefines.xcconfig	2017-04-06 18:35:47 UTC (rev 215045)
+++ trunk/Source/WebCore/PAL/Configurations/FeatureDefines.xcconfig	2017-04-06 18:48:11 UTC (rev 215046)
@@ -184,9 +184,8 @@
 ENABLE_WEB_RTC[sdk=watch*] = ;
 ENABLE_WEB_RTC[sdk=appletv*] = ;
 ENABLE_WEB_RTC[sdk=iphone*] = $(ENABLE_WEB_RTC_ios);
-ENABLE_WEB_RTC_ios[arch=arm64] = $(ENABLE_WEB_RTC_ios_$(IPHONEOS_DEPLOYMENT_TARGET:base))
-ENABLE_WEB_RTC_ios[arch=x86_64] = $(ENABLE_WEB_RTC_ios_$(IPHONEOS_DEPLOYMENT_TARGET:base))
-ENABLE_WEB_RTC_ios_11 = ENABLE_WEB_RTC;
+ENABLE_WEB_RTC_ios[arch=arm64] = ENABLE_WEB_RTC;
+ENABLE_WEB_RTC_ios[arch=x86_64] = ENABLE_WEB_RTC;
 ENABLE_WEB_RTC[sdk=macosx*] = $(ENABLE_WEB_RTC_macosx);
 ENABLE_WEB_RTC_macosx[arch=x86_64] = $(ENABLE_WEB_RTC_macosx_$(CONFIGURATION));
 ENABLE_WEB_RTC_macosx_Debug = ENABLE_WEB_RTC;

Modified: trunk/Source/WebKit/mac/ChangeLog (215045 => 215046)


--- trunk/Source/WebKit/mac/ChangeLog	2017-04-06 18:35:47 UTC (rev 215045)
+++ trunk/Source/WebKit/mac/ChangeLog	2017-04-06 18:48:11 UTC (rev 215046)
@@ -1,3 +1,12 @@
+2017-04-06  Youenn Fablet  <you...@apple.com>
+
+        WebRTC tests gardening
+        https://bugs.webkit.org/show_bug.cgi?id=170508
+
+        Reviewed by Eric Carlson.
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2017-04-04  Megan Gardner  <megan_gard...@apple.com>
 
         Fix leaks in WebUITextIndicatorData

Modified: trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig (215045 => 215046)


--- trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig	2017-04-06 18:35:47 UTC (rev 215045)
+++ trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig	2017-04-06 18:48:11 UTC (rev 215046)
@@ -184,9 +184,8 @@
 ENABLE_WEB_RTC[sdk=watch*] = ;
 ENABLE_WEB_RTC[sdk=appletv*] = ;
 ENABLE_WEB_RTC[sdk=iphone*] = $(ENABLE_WEB_RTC_ios);
-ENABLE_WEB_RTC_ios[arch=arm64] = $(ENABLE_WEB_RTC_ios_$(IPHONEOS_DEPLOYMENT_TARGET:base))
-ENABLE_WEB_RTC_ios[arch=x86_64] = $(ENABLE_WEB_RTC_ios_$(IPHONEOS_DEPLOYMENT_TARGET:base))
-ENABLE_WEB_RTC_ios_11 = ENABLE_WEB_RTC;
+ENABLE_WEB_RTC_ios[arch=arm64] = ENABLE_WEB_RTC;
+ENABLE_WEB_RTC_ios[arch=x86_64] = ENABLE_WEB_RTC;
 ENABLE_WEB_RTC[sdk=macosx*] = $(ENABLE_WEB_RTC_macosx);
 ENABLE_WEB_RTC_macosx[arch=x86_64] = $(ENABLE_WEB_RTC_macosx_$(CONFIGURATION));
 ENABLE_WEB_RTC_macosx_Debug = ENABLE_WEB_RTC;

Modified: trunk/Source/WebKit2/ChangeLog (215045 => 215046)


--- trunk/Source/WebKit2/ChangeLog	2017-04-06 18:35:47 UTC (rev 215045)
+++ trunk/Source/WebKit2/ChangeLog	2017-04-06 18:48:11 UTC (rev 215046)
@@ -1,3 +1,12 @@
+2017-04-06  Youenn Fablet  <you...@apple.com>
+
+        WebRTC tests gardening
+        https://bugs.webkit.org/show_bug.cgi?id=170508
+
+        Reviewed by Eric Carlson.
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2017-04-06  Antti Koivisto  <an...@apple.com>
 
         Implement testing mode for disk cache

Modified: trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig (215045 => 215046)


--- trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig	2017-04-06 18:35:47 UTC (rev 215045)
+++ trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig	2017-04-06 18:48:11 UTC (rev 215046)
@@ -184,9 +184,8 @@
 ENABLE_WEB_RTC[sdk=watch*] = ;
 ENABLE_WEB_RTC[sdk=appletv*] = ;
 ENABLE_WEB_RTC[sdk=iphone*] = $(ENABLE_WEB_RTC_ios);
-ENABLE_WEB_RTC_ios[arch=arm64] = $(ENABLE_WEB_RTC_ios_$(IPHONEOS_DEPLOYMENT_TARGET:base))
-ENABLE_WEB_RTC_ios[arch=x86_64] = $(ENABLE_WEB_RTC_ios_$(IPHONEOS_DEPLOYMENT_TARGET:base))
-ENABLE_WEB_RTC_ios_11 = ENABLE_WEB_RTC;
+ENABLE_WEB_RTC_ios[arch=arm64] = ENABLE_WEB_RTC;
+ENABLE_WEB_RTC_ios[arch=x86_64] = ENABLE_WEB_RTC;
 ENABLE_WEB_RTC[sdk=macosx*] = $(ENABLE_WEB_RTC_macosx);
 ENABLE_WEB_RTC_macosx[arch=x86_64] = $(ENABLE_WEB_RTC_macosx_$(CONFIGURATION));
 ENABLE_WEB_RTC_macosx_Debug = ENABLE_WEB_RTC;

Modified: trunk/Tools/ChangeLog (215045 => 215046)


--- trunk/Tools/ChangeLog	2017-04-06 18:35:47 UTC (rev 215045)
+++ trunk/Tools/ChangeLog	2017-04-06 18:48:11 UTC (rev 215046)
@@ -1,3 +1,12 @@
+2017-04-06  Youenn Fablet  <you...@apple.com>
+
+        WebRTC tests gardening
+        https://bugs.webkit.org/show_bug.cgi?id=170508
+
+        Reviewed by Eric Carlson.
+
+        * TestWebKitAPI/Configurations/FeatureDefines.xcconfig:
+
 2017-04-06  Jonathan Bedard  <jbed...@apple.com>
 
         REGRESSION: Simulators failing to install after launch_app times out

Modified: trunk/Tools/TestWebKitAPI/Configurations/FeatureDefines.xcconfig (215045 => 215046)


--- trunk/Tools/TestWebKitAPI/Configurations/FeatureDefines.xcconfig	2017-04-06 18:35:47 UTC (rev 215045)
+++ trunk/Tools/TestWebKitAPI/Configurations/FeatureDefines.xcconfig	2017-04-06 18:48:11 UTC (rev 215046)
@@ -184,9 +184,8 @@
 ENABLE_WEB_RTC[sdk=watch*] = ;
 ENABLE_WEB_RTC[sdk=appletv*] = ;
 ENABLE_WEB_RTC[sdk=iphone*] = $(ENABLE_WEB_RTC_ios);
-ENABLE_WEB_RTC_ios[arch=arm64] = $(ENABLE_WEB_RTC_ios_$(IPHONEOS_DEPLOYMENT_TARGET:base))
-ENABLE_WEB_RTC_ios[arch=x86_64] = $(ENABLE_WEB_RTC_ios_$(IPHONEOS_DEPLOYMENT_TARGET:base))
-ENABLE_WEB_RTC_ios_11 = ENABLE_WEB_RTC;
+ENABLE_WEB_RTC_ios[arch=arm64] = ENABLE_WEB_RTC;
+ENABLE_WEB_RTC_ios[arch=x86_64] = ENABLE_WEB_RTC;
 ENABLE_WEB_RTC[sdk=macosx*] = $(ENABLE_WEB_RTC_macosx);
 ENABLE_WEB_RTC_macosx[arch=x86_64] = $(ENABLE_WEB_RTC_macosx_$(CONFIGURATION));
 ENABLE_WEB_RTC_macosx_Debug = ENABLE_WEB_RTC;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to