Title: [100636] trunk/Tools
Revision
100636
Author
[email protected]
Date
2011-11-17 09:16:48 -0800 (Thu, 17 Nov 2011)

Log Message

Unreviewed, run-bindings-tests fix after r91028.

* Scripts/run-bindings-tests: Use scm.detection module.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (100635 => 100636)


--- trunk/Tools/ChangeLog	2011-11-17 17:14:17 UTC (rev 100635)
+++ trunk/Tools/ChangeLog	2011-11-17 17:16:48 UTC (rev 100636)
@@ -1,3 +1,9 @@
+2011-11-17  Philippe Normand  <[email protected]>
+
+        Unreviewed, run-bindings-tests fix after r91028.
+
+        * Scripts/run-bindings-tests: Use scm.detection module.
+
 2011-11-17  Jochen Eisinger  <[email protected]>
 
         Silence a warning about control reaching the end of a non-void function

Modified: trunk/Tools/Scripts/run-bindings-tests (100635 => 100636)


--- trunk/Tools/Scripts/run-bindings-tests	2011-11-17 17:14:17 UTC (rev 100635)
+++ trunk/Tools/Scripts/run-bindings-tests	2011-11-17 17:16:48 UTC (rev 100636)
@@ -35,7 +35,7 @@
 import subprocess
 import sys
 import tempfile
-from webkitpy.common.checkout import scm
+from webkitpy.common.checkout.scm.detection import detect_scm_system
 
 
 def generate_from_idl(generator, idl_file, output_directory):
@@ -108,7 +108,7 @@
     """
     reset_results = "--reset-results" in argv
 
-    current_scm = scm.detect_scm_system(os.curdir)
+    current_scm = detect_scm_system(os.curdir)
     os.chdir(current_scm.checkout_root)
 
     all_tests_passed = True
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to