Title: [89542] trunk/Tools
- Revision
- 89542
- Author
- [email protected]
- Date
- 2011-06-23 01:02:45 -0700 (Thu, 23 Jun 2011)
Log Message
2011-06-23 Dirk Pranke <[email protected]>
Reviewed by Eric Seidel.
nrwt: make TestInput objects printable
https://bugs.webkit.org/show_bug.cgi?id=63225
This makes debugging slighlty easier.
* Scripts/webkitpy/layout_tests/layout_package/test_input.py:
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (89541 => 89542)
--- trunk/Tools/ChangeLog 2011-06-23 07:20:38 UTC (rev 89541)
+++ trunk/Tools/ChangeLog 2011-06-23 08:02:45 UTC (rev 89542)
@@ -1,3 +1,14 @@
+2011-06-23 Dirk Pranke <[email protected]>
+
+ Reviewed by Eric Seidel.
+
+ nrwt: make TestInput objects printable
+ https://bugs.webkit.org/show_bug.cgi?id=63225
+
+ This makes debugging slighlty easier.
+
+ * Scripts/webkitpy/layout_tests/layout_package/test_input.py:
+
2011-06-22 Daniel Bates <[email protected]>
Reviewed by Adam Barth.
Modified: trunk/Tools/Scripts/webkitpy/layout_tests/layout_package/test_input.py (89541 => 89542)
--- trunk/Tools/Scripts/webkitpy/layout_tests/layout_package/test_input.py 2011-06-23 07:20:38 UTC (rev 89541)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/layout_package/test_input.py 2011-06-23 08:02:45 UTC (rev 89542)
@@ -41,3 +41,6 @@
# FIXME: filename should really be test_name as a relative path.
self.filename = filename
self.timeout = timeout
+
+ def __repr__(self):
+ return "TestInput('%s', %d)" % (self.filename, self.timeout)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes