Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(748)

Unified Diff: tools/testing/dart/test_runner.dart

Issue 2670763002: Print stack traces of tests timing out on Windows (Closed)
Patch Set: use cdb Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/test_runner.dart
diff --git a/tools/testing/dart/test_runner.dart b/tools/testing/dart/test_runner.dart
index 1680066f6a7c925f9256b86ee68383bb108f5f1b..e69a6ac2e9daafc532ded4b0ee6484799ba8ff28 100644
--- a/tools/testing/dart/test_runner.dart
+++ b/tools/testing/dart/test_runner.dart
@@ -2008,6 +2008,9 @@ class RunningProcess {
// sample the threads once.
executable = '/usr/bin/sample';
arguments = ['${process.pid}', '1', '4000', '-mayDie'];
+ } else if (io.Platform.isWindows) {
+ executable = "cdb.exe";
kustermann 2017/02/02 13:59:23 How do you ensure the correct version of cdb.exe i
Florian Schneider 2017/02/02 18:22:02 Yes, the correct version has to be in the PATH. I
+ arguments = ['-p', '${process.pid}', '-c', '!uniqstack;qd'];
}
if (executable != null) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698