[webkit-changes] cvs commit: WebKitTools/Scripts run-webkit-tests

Darin darin at opensource.apple.com
Wed Sep 28 13:55:04 PDT 2005


darin       05/09/28 13:55:03

  Modified:    .        ChangeLog
               Scripts  run-webkit-tests
  Log:
          - fixed http://bugzilla.opendarwin.org/show_bug.cgi?id=5144
            pixel test should run even if render trees differ
  
          * Scripts/run-webkit-tests: Don't check if the text dump matches.
  
  Revision  Changes    Path
  1.109     +7 -0      WebKitTools/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebKitTools/ChangeLog,v
  retrieving revision 1.108
  retrieving revision 1.109
  diff -u -r1.108 -r1.109
  --- ChangeLog	27 Sep 2005 07:18:30 -0000	1.108
  +++ ChangeLog	28 Sep 2005 20:55:03 -0000	1.109
  @@ -1,3 +1,10 @@
  +2005-09-28  Darin Adler  <darin at apple.com>
  +
  +        - fixed http://bugzilla.opendarwin.org/show_bug.cgi?id=5144
  +          pixel test should run even if render trees differ
  +
  +        * Scripts/run-webkit-tests: Don't check if the text dump matches.
  +
   2005-09-27  Eric Seidel  <eseidel at apple.com>
   
           No review needed, SVG build fix only.
  
  
  
  1.29      +1 -1      WebKitTools/Scripts/run-webkit-tests
  
  Index: run-webkit-tests
  ===================================================================
  RCS file: /cvs/root/WebKitTools/Scripts/run-webkit-tests,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- run-webkit-tests	24 Sep 2005 13:50:39 -0000	1.28
  +++ run-webkit-tests	28 Sep 2005 20:55:03 -0000	1.29
  @@ -246,7 +246,7 @@
               $diffResult = "passed";
           }
   
  -        if (!$hashMatches && -f "$testDirectory/$base-expected.png" && $textDumpMatches) {
  +        if (!$hashMatches && -f "$testDirectory/$base-expected.png") {
               $expectedPNGSize = -s "$testDirectory/$base-expected.png";
               open EXPECTEDPNG, "$testDirectory/$base-expected.png";
               read(EXPECTEDPNG, $expectedPNG, $expectedPNGSize);
  
  
  



More information about the webkit-changes mailing list