Changeset 78685 in webkit


Ignore:
Timestamp:
Feb 15, 2011 10:48:05 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-02-15 Xianzhu Wang <wangxianzhu@google.com>

Reviewed by Kent Tamura.

Fixed a small bug about --no-timeout option.
https://bugs.webkit.org/show_bug.cgi?id=52873

  • DumpRenderTree/chromium/DumpRenderTree.cpp: (main):
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r78620 r78685  
     12011-02-15  Xianzhu Wang  <wangxianzhu@google.com>
     2
     3        Reviewed by Kent Tamura.
     4
     5        Fixed a small bug about --no-timeout option.
     6        https://bugs.webkit.org/show_bug.cgi?id=52873
     7
     8        * DumpRenderTree/chromium/DumpRenderTree.cpp:
     9        (main):
     10
    1112011-02-15  Kenneth Russell  <kbr@google.com>
    212
  • trunk/Tools/DumpRenderTree/chromium/DumpRenderTree.cpp

    r76704 r78685  
    5959static const char optionStressDeopt[] = "--stress-deopt";
    6060static const char optionJavaScriptFlags[] = "--js-flags=";
    61 static const char optionNoTimeout[] = "--no-timeout=";
     61static const char optionNoTimeout[] = "--no-timeout";
    6262
    6363static void runTest(TestShell& shell, TestParams& params, const string& testName, bool testShellMode)
     
    158158        else if (!argument.find(optionJavaScriptFlags))
    159159            javaScriptFlags = argument.substr(strlen(optionJavaScriptFlags));
    160         else if (!argument.find(optionNoTimeout))
     160        else if (argument == optionNoTimeout)
    161161            noTimeout = true;
    162162        else if (argument.size() && argument[0] == '-')
Note: See TracChangeset for help on using the changeset viewer.