[SCM] WebKit Debian packaging branch, webkit-1.3, updated. upstream/1.3.7-4207-g178b198

weinig at apple.com weinig at apple.com
Sun Feb 20 23:35:45 UTC 2011


The following commit has been merged in the webkit-1.3 branch:
commit 051259f0893c9c08018ece13b75e2b228eff3b09
Author: weinig at apple.com <weinig at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Jan 21 23:32:33 2011 +0000

    WebKitTestRunner needs the HOME environment variable to be set.
    <rdar://problem/8896573>
    
    Reviewed by Geoffrey Sean Garen and Mark Rowe.
    
    * Scripts/old-run-webkit-tests: Set the HOME environment variable if
    it exists.
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@76401 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/Tools/ChangeLog b/Tools/ChangeLog
index 12875fc..3ef3b4a 100644
--- a/Tools/ChangeLog
+++ b/Tools/ChangeLog
@@ -1,3 +1,13 @@
+2011-01-21  Sam Weinig  <sam at webkit.org>
+
+        Reviewed by Geoffrey Sean Garen and Mark Rowe.
+
+        WebKitTestRunner needs the HOME environment variable to be set.
+        <rdar://problem/8896573>
+
+        * Scripts/old-run-webkit-tests: Set the HOME environment variable if
+        it exists.
+
 2011-01-21  Dirk Pranke  <dpranke at chromium.org>
 
         Reviewed by Eric Seidel.
diff --git a/Tools/Scripts/old-run-webkit-tests b/Tools/Scripts/old-run-webkit-tests
index 892b5a4..79e2d9e 100755
--- a/Tools/Scripts/old-run-webkit-tests
+++ b/Tools/Scripts/old-run-webkit-tests
@@ -1465,6 +1465,9 @@ sub openDumpTool()
         if (defined $ENV{'DYLD_LIBRARY_PATH'}) {
             $CLEAN_ENV{DYLD_LIBRARY_PATH} = $ENV{'DYLD_LIBRARY_PATH'};
         }
+        if (defined $ENV{'HOME'}) {
+            $CLEAN_ENV{HOME} = $ENV{'HOME'};
+        }
 
         $CLEAN_ENV{DYLD_FRAMEWORK_PATH} = $productDir;
         $CLEAN_ENV{DYLD_INSERT_LIBRARIES} = "/usr/lib/libgmalloc.dylib" if $guardMalloc;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list