Changeset 123877 in webkit


Ignore:
Timestamp:
Jul 27, 2012, 9:22:06 AM (13 years ago)
Author:
kbalazs@webkit.org
Message:

[NRWT] should have a way to restrict pixel tests for individual directories
https://bugs.webkit.org/show_bug.cgi?id=91754

Unreviewed attempt to fix the chaos I introduced.

  • DumpRenderTree/qt/DumpRenderTreeQt.cpp:

(WebCore::DumpRenderTree::processLine):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r123872 r123877  
     12012-07-27  Balazs Kelemen  <kbalazs@webkit.org>
     2
     3        [NRWT] should have a way to restrict pixel tests for individual directories
     4        https://bugs.webkit.org/show_bug.cgi?id=91754
     5
     6        Unreviewed attempt to fix the chaos I introduced.
     7
     8        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
     9        (WebCore::DumpRenderTree::processLine):
     10
    1112012-07-27  YoungTaeck Song  <youngtaeck.song@samsung.com>
    212
  • trunk/Tools/DumpRenderTree/qt/DumpRenderTreeQt.cpp

    r123871 r123877  
    697697    // single quote marks the pixel dump hash
    698698    int indexOfFirstSeparator = line.indexOf('\'');
    699     int indexOfSecondSeparator = line.indexOf('\'', indexOfFirstSeparator);
     699    int indexOfSecondSeparator = line.indexOf('\'', indexOfFirstSeparator + 1);
    700700    if (indexOfFirstSeparator > -1) {
    701701        int indexOfPixelHash = indexOfFirstSeparator + 1;
Note: See TracChangeset for help on using the changeset viewer.