Title: [172751] trunk/Tools
Revision
172751
Author
[email protected]
Date
2014-08-19 06:09:27 -0700 (Tue, 19 Aug 2014)

Log Message

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

Patch by Akos Kiss <[email protected]> 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-_javascript_core-tests:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (172750 => 172751)


--- trunk/Tools/ChangeLog	2014-08-19 12:05:31 UTC (rev 172750)
+++ trunk/Tools/ChangeLog	2014-08-19 13:09:27 UTC (rev 172751)
@@ -1,3 +1,15 @@
+2014-08-19  Akos Kiss  <[email protected]>
+
+        Let the caller define JSC_timeout for run-_javascript_core-tests
+        https://bugs.webkit.org/show_bug.cgi?id=136068
+
+        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-_javascript_core-tests:
+
 2014-08-19  Renato Nagy  <[email protected]>
 
         Remove obsolete run-_javascript_core-tests result parsing from master.cfg

Modified: trunk/Tools/Scripts/run-_javascript_core-tests (172750 => 172751)


--- trunk/Tools/Scripts/run-_javascript_core-tests	2014-08-19 12:05:31 UTC (rev 172750)
+++ trunk/Tools/Scripts/run-_javascript_core-tests	2014-08-19 13:09:27 UTC (rev 172751)
@@ -148,7 +148,7 @@
 
 my $productDir = jscProductDir();
 $ENV{DYLD_FRAMEWORK_PATH} = $productDir;
-$ENV{JSC_timeout} = 60; # Set a 60 second timeout on all jsc tests.
+$ENV{JSC_timeout} = 60 unless $ENV{JSC_timeout}; # Set a 60 second timeout on all jsc tests (if environment variable not defined already).
 setPathForRunningWebKitApp(\%ENV) if isCygwin();
 
 sub testapiPath($)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to