Changeset 172751 in webkit


Ignore:
Timestamp:
Aug 19, 2014 6:09:27 AM (10 years ago)
Author:
commit-queue@webkit.org
Message:

Let the caller define JSC_timeout for run-javascriptcore-tests
https://bugs.webkit.org/show_bug.cgi?id=136068

Patch by Akos Kiss <akiss@inf.u-szeged.hu> on 2014-08-19
Reviewed by Csaba Osztrogonác.

Keep the 60 second timeout for jsc tests as the default setting but
don't override the value of JSC_timeout if already set.

  • Scripts/run-javascriptcore-tests:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r172748 r172751  
     12014-08-19  Akos Kiss  <akiss@inf.u-szeged.hu>
     2
     3        Let the caller define JSC_timeout for run-javascriptcore-tests
     4        https://bugs.webkit.org/show_bug.cgi?id=136068
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        Keep the 60 second timeout for jsc tests as the default setting but
     9        don't override the value of JSC_timeout if already set.
     10
     11        * Scripts/run-javascriptcore-tests:
     12
    1132014-08-19  Renato Nagy  <nagy.renato@stud.u-szeged.hu>
    214
  • trunk/Tools/Scripts/run-javascriptcore-tests

    r171213 r172751  
    149149my $productDir = jscProductDir();
    150150$ENV{DYLD_FRAMEWORK_PATH} = $productDir;
    151 $ENV{JSC_timeout} = 60; # Set a 60 second timeout on all jsc tests.
     151$ENV{JSC_timeout} = 60 unless $ENV{JSC_timeout}; # Set a 60 second timeout on all jsc tests (if environment variable not defined already).
    152152setPathForRunningWebKitApp(\%ENV) if isCygwin();
    153153
Note: See TracChangeset for help on using the changeset viewer.