[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

tkent at chromium.org tkent at chromium.org
Wed Dec 22 11:49:46 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 6d789c10b8882bd1d28d41113f264e120f358052
Author: tkent at chromium.org <tkent at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Aug 9 04:05:21 2010 +0000

    2010-08-08  Kent Tamura  <tkent at chromium.org>
    
            Unreviewed, trivial fix.
    
            Fix "WindowsError: [Error 32] The process cannot access the file
            because it is being used by another process" introduced by r64959.
    
            * BuildSlaveSupport/test-result-archive:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64961 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/BuildSlaveSupport/test-result-archive b/WebKitTools/BuildSlaveSupport/test-result-archive
index ae97991..af66bf0 100644
--- a/WebKitTools/BuildSlaveSupport/test-result-archive
+++ b/WebKitTools/BuildSlaveSupport/test-result-archive
@@ -76,8 +76,10 @@ def archiveTestResults(configuration, platform, layoutTestResultsDir):
         if subprocess.call(["zip", "-r", archiveFile, "."], cwd=layoutTestResultsDir):
             return 1
     elif platform == 'chromium':
+        cwd = os.getcwd()
         os.chdir(layoutTestResultsDir)
         zipFilesRecursively(archiveFile, ["."])
+        os.chdir(cwd)
 
     try:
         shutil.rmtree(layoutTestResultsDir)
diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 321d400..a4250c2 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,5 +1,14 @@
 2010-08-08  Kent Tamura  <tkent at chromium.org>
 
+        Unreviewed, trivial fix.
+
+        Fix "WindowsError: [Error 32] The process cannot access the file
+        because it is being used by another process" introduced by r64959.
+
+        * BuildSlaveSupport/test-result-archive:
+
+2010-08-08  Kent Tamura  <tkent at chromium.org>
+
         Reviewed by Tony Chang.
 
         Chromium buildbot: Avoid "zip" command dependency

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list