Title: [92407] trunk/Tools
Revision
92407
Author
[email protected]
Date
2011-08-04 13:38:37 -0700 (Thu, 04 Aug 2011)

Log Message

More logging to help debug the "no SVN rev on Chromium Windows bots"
bug.  My current theory is that we're trying to detect the SCM system
in the wrong directory.

* Scripts/webkitpy/layout_tests/port/base.py:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (92406 => 92407)


--- trunk/Tools/ChangeLog	2011-08-04 20:14:37 UTC (rev 92406)
+++ trunk/Tools/ChangeLog	2011-08-04 20:38:37 UTC (rev 92407)
@@ -1,3 +1,11 @@
+2011-08-04  Adam Barth  <[email protected]>
+
+        More logging to help debug the "no SVN rev on Chromium Windows bots"
+        bug.  My current theory is that we're trying to detect the SCM system
+        in the wrong directory.
+
+        * Scripts/webkitpy/layout_tests/port/base.py:
+
 2011-08-04  Dimitri Glazkov  <[email protected]>
 
         Speed up webkit-patch optimize-expectations significantly by not collecting test files.

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


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/base.py	2011-08-04 20:14:37 UTC (rev 92406)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/base.py	2011-08-04 20:38:37 UTC (rev 92407)
@@ -631,7 +631,11 @@
         # FIXME: Due to Chromium's insane DEPS system, the root of the WebKit
         # checkout isn't actually from svn.webkit.org. Instead, we detect the
         # scm from the Source directory, which really does map to svn.webkit.org.
-        return detect_scm_system(self.path_from_webkit_base('Source'))
+        path = self.path_from_webkit_base('Source')
+        _log.debug('---webkit_source_scm---')
+        _log.debug(path)
+        _log.debug(os.getcwd())
+        return detect_scm_system(path)
 
     def path_to_test_expectations_file(self):
         """Update the test expectations to the passed-in string.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to