Title: [130414] trunk/Tools
Revision
130414
Author
[email protected]
Date
2012-10-04 11:50:23 -0700 (Thu, 04 Oct 2012)

Log Message

webkitpy: Accept WEBKITOUTPUTDIR in Port._setup_environ_for_server.
https://bugs.webkit.org/show_bug.cgi?id=98436

Reviewed by Dirk Pranke.

The Xvfb driver (ab)uses Port._setup_environ_for_server() to set
the environment for the server process, and the WEBKITOUTPUTDIR
environment variable was not being passed through, causing the
build directory to be wrongfully set to WebKitBuild/ all the time.

* Scripts/webkitpy/layout_tests/port/base.py:
(Port.to.setup_environ_for_server):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (130413 => 130414)


--- trunk/Tools/ChangeLog	2012-10-04 18:49:42 UTC (rev 130413)
+++ trunk/Tools/ChangeLog	2012-10-04 18:50:23 UTC (rev 130414)
@@ -1,3 +1,18 @@
+2012-10-04  Raphael Kubo da Costa  <[email protected]>
+
+        webkitpy: Accept WEBKITOUTPUTDIR in Port._setup_environ_for_server.
+        https://bugs.webkit.org/show_bug.cgi?id=98436
+
+        Reviewed by Dirk Pranke.
+
+        The Xvfb driver (ab)uses Port._setup_environ_for_server() to set
+        the environment for the server process, and the WEBKITOUTPUTDIR
+        environment variable was not being passed through, causing the
+        build directory to be wrongfully set to WebKitBuild/ all the time.
+
+        * Scripts/webkitpy/layout_tests/port/base.py:
+        (Port.to.setup_environ_for_server):
+
 2012-10-04  Christophe Dumez  <[email protected]>
 
         [EFL][WK2] Add setting to allow file access from file:// URLs

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/base.py (130413 => 130414)


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/base.py	2012-10-04 18:49:42 UTC (rev 130413)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/base.py	2012-10-04 18:50:23 UTC (rev 130414)
@@ -870,6 +870,7 @@
 
             # Most ports (?):
             'WEBKIT_TESTFONTS',
+            'WEBKITOUTPUTDIR',
         ]
         for variable in variables_to_copy:
             self._copy_value_from_environ_if_set(clean_env, variable)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to