Ignore:
Timestamp:
Jan 18, 2016, 7:28:26 AM (9 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):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.