Title: [102446] trunk/Tools
Revision
102446
Author
[email protected]
Date
2011-12-09 01:15:59 -0800 (Fri, 09 Dec 2011)

Log Message

REGRESSION(r102105): run-bindings-tests should output full diff results
https://bugs.webkit.org/show_bug.cgi?id=74166

Reviewed by Adam Barth.

Since r102105, the output of run-bindings-tests is truncated to 500 characters.
run-bindings-tests should output full diff results.

* Scripts/webkitpy/bindings/main.py: Replaced e.message_with_output() with e.output.
(BindingsTests.generate_from_idl):
(BindingsTests.generate_supplemental_dependency):
(BindingsTests.detect_changes):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (102445 => 102446)


--- trunk/Tools/ChangeLog	2011-12-09 09:11:26 UTC (rev 102445)
+++ trunk/Tools/ChangeLog	2011-12-09 09:15:59 UTC (rev 102446)
@@ -1,3 +1,18 @@
+2011-12-09  Kentaro Hara  <[email protected]>
+
+        REGRESSION(r102105): run-bindings-tests should output full diff results
+        https://bugs.webkit.org/show_bug.cgi?id=74166
+
+        Reviewed by Adam Barth.
+
+        Since r102105, the output of run-bindings-tests is truncated to 500 characters.
+        run-bindings-tests should output full diff results.
+
+        * Scripts/webkitpy/bindings/main.py: Replaced e.message_with_output() with e.output.
+        (BindingsTests.generate_from_idl):
+        (BindingsTests.generate_supplemental_dependency):
+        (BindingsTests.detect_changes):
+
 2011-12-09  Simon Hausmann  <[email protected]>
 
         [Qt] Fix compilation with newly separated Qt 5 QtQuick module

Modified: trunk/Tools/Scripts/webkitpy/bindings/main.py (102445 => 102446)


--- trunk/Tools/Scripts/webkitpy/bindings/main.py	2011-12-09 09:11:26 UTC (rev 102445)
+++ trunk/Tools/Scripts/webkitpy/bindings/main.py	2011-12-09 09:15:59 UTC (rev 102446)
@@ -58,7 +58,7 @@
             if output:
                 print output
         except ScriptError, e:
-            print e.message_with_output()
+            print e.output
             exit_code = e.exit_code
         return exit_code
 
@@ -84,7 +84,7 @@
             if output:
                 print output
         except ScriptError, e:
-            print e.message_with_output()
+            print e.output
             exit_code = e.exit_code
         os.remove(idl_files_list[1])
         return exit_code
@@ -102,7 +102,7 @@
             try:
                 output = self.executive.run_command(cmd)
             except ScriptError, e:
-                output = e.message_with_output()
+                output = e.output
                 exit_code = e.exit_code
 
             if exit_code or output:
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to