Title: [179920] trunk/LayoutTests
Revision
179920
Author
dburk...@apple.com
Date
2015-02-11 00:36:22 -0800 (Wed, 11 Feb 2015)

Log Message

http/tests/cache/disk-cache-validation.html generates a lot of Perl errors
https://bugs.webkit.org/show_bug.cgi?id=141393

Reviewed by Darin Adler.

* http/tests/cache/resources/generate-response.cgi:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (179919 => 179920)


--- trunk/LayoutTests/ChangeLog	2015-02-11 08:01:19 UTC (rev 179919)
+++ trunk/LayoutTests/ChangeLog	2015-02-11 08:36:22 UTC (rev 179920)
@@ -1,3 +1,12 @@
+2015-02-11  Dana Burkart  <dburk...@apple.com>
+
+        http/tests/cache/disk-cache-validation.html generates a lot of Perl errors
+        https://bugs.webkit.org/show_bug.cgi?id=141393
+
+        Reviewed by Darin Adler.
+
+        * http/tests/cache/resources/generate-response.cgi:
+
 2015-02-10  Gyuyoung Kim  <gyuyoung....@samsung.com>
 
         Unreviewed, EFL gardening. Tests of fast/ruby needs to have new baseline since r172874.

Modified: trunk/LayoutTests/http/tests/cache/resources/generate-response.cgi (179919 => 179920)


--- trunk/LayoutTests/http/tests/cache/resources/generate-response.cgi	2015-02-11 08:01:19 UTC (rev 179919)
+++ trunk/LayoutTests/http/tests/cache/resources/generate-response.cgi	2015-02-11 08:36:22 UTC (rev 179920)
@@ -6,7 +6,7 @@
 my $query = new CGI;
 @names = $query->param;
 
-if ($query->http("If-None-Match") eq "match") {
+if ($query->http && $query->http("If-None-Match") eq "match") {
     print "Status: 304\n";
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to