Title: [235628] trunk/Tools
Revision
235628
Author
keith_mil...@apple.com
Date
2018-09-04 13:16:55 -0700 (Tue, 04 Sep 2018)

Log Message

Perl doesn't like calling keys on a reference
https://bugs.webkit.org/show_bug.cgi?id=189261

Reviewed by Michael Saboff.

* Scripts/test262/Runner.pm:
(UpdateResults):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (235627 => 235628)


--- trunk/Tools/ChangeLog	2018-09-04 19:48:39 UTC (rev 235627)
+++ trunk/Tools/ChangeLog	2018-09-04 20:16:55 UTC (rev 235628)
@@ -1,3 +1,13 @@
+2018-09-04  Keith Miller  <keith_mil...@apple.com>
+
+        Perl doesn't like calling keys on a reference
+        https://bugs.webkit.org/show_bug.cgi?id=189261
+
+        Reviewed by Michael Saboff.
+
+        * Scripts/test262/Runner.pm:
+        (UpdateResults):
+
 2018-09-04  Jer Noble  <jer.no...@apple.com>
 
         REGRESSION (r234081): TestWebKitAPI.VideoControlsManager.VideoControlsManagerAudioElementFollowingUserInteraction is a flaky timeout

Modified: trunk/Tools/Scripts/test262/Runner.pm (235627 => 235628)


--- trunk/Tools/Scripts/test262/Runner.pm	2018-09-04 19:48:39 UTC (rev 235627)
+++ trunk/Tools/Scripts/test262/Runner.pm	2018-09-04 20:16:55 UTC (rev 235628)
@@ -926,7 +926,7 @@
         delete $expect->{$test->{path}};
     }
 
-    foreach my $path (keys($expect)) {
+    foreach my $path (keys(%{$expect})) {
         foreach my $mode (keys($expect->{$path})) {
             my $test = {
                 path => $path,
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to