Title: [127488] trunk/Tools
Revision
127488
Author
[email protected]
Date
2012-09-04 12:59:35 -0700 (Tue, 04 Sep 2012)

Log Message

[Chromium-Android] Output time and thread info in crash log
https://bugs.webkit.org/show_bug.cgi?id=95768

Reviewed by Adam Barth.

* Scripts/webkitpy/layout_tests/port/chromium_android.py:
(ChromiumAndroidDriver._get_logcat): Add '-v threadtime' to adb logcat command line to get time and thread info.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (127487 => 127488)


--- trunk/Tools/ChangeLog	2012-09-04 19:48:56 UTC (rev 127487)
+++ trunk/Tools/ChangeLog	2012-09-04 19:59:35 UTC (rev 127488)
@@ -1,3 +1,13 @@
+2012-09-04  Xianzhu Wang  <[email protected]>
+
+        [Chromium-Android] Output time and thread info in crash log
+        https://bugs.webkit.org/show_bug.cgi?id=95768
+
+        Reviewed by Adam Barth.
+
+        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
+        (ChromiumAndroidDriver._get_logcat): Add '-v threadtime' to adb logcat command line to get time and thread info.
+
 2012-09-04  Tommy Widenflycht  <[email protected]>
 
         MediaStream API: Change the MediaStreamTrackList track added/removed signaling

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_android.py (127487 => 127488)


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_android.py	2012-09-04 19:48:56 UTC (rev 127487)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_android.py	2012-09-04 19:59:35 UTC (rev 127488)
@@ -456,7 +456,7 @@
                            self._run_adb_command(['shell', 'cat', '/data/tombstones/' + last_tombstone[6]]))
 
     def _get_logcat(self):
-        return self._run_adb_command(['logcat', '-d'])
+        return self._run_adb_command(['logcat', '-d', '-v', 'threadtime'])
 
     def _setup_performance(self):
         # Disable CPU scaling and drop ram cache to reduce noise in tests
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to