Changeset 195233 in webkit


Ignore:
Timestamp:
Jan 18, 2016 7:28:26 AM (8 years ago)
Author:
Csaba Osztrogonác
Message:

REGRESSION(r194601): Fix the jsc timeout option of jsc.cpp
https://bugs.webkit.org/show_bug.cgi?id=153204

Reviewed by Michael Catanzaro.

  • jsc.cpp:

(main):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r195232 r195233  
     12016-01-18  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        REGRESSION(r194601): Fix the jsc timeout option of jsc.cpp
     4        https://bugs.webkit.org/show_bug.cgi?id=153204
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        * jsc.cpp:
     9        (main):
     10
    1112016-01-18  Csaba Osztrogonác  <ossy@webkit.org>
    212
  • trunk/Source/JavaScriptCore/jsc.cpp

    r194840 r195233  
    17211721    WTF::initializeThreading();
    17221722
    1723     if (char* timeoutString = getenv("JSC_timeout")) {
     1723    if (char* timeoutString = getenv("JSCTEST_timeout")) {
    17241724        if (sscanf(timeoutString, "%lf", &s_desiredTimeout) != 1) {
    17251725            dataLog(
Note: See TracChangeset for help on using the changeset viewer.