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

Unified Diff: pkg/unittest/lib/test_controller.js

Issue 23609044: Add debug info the test_controller.js (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 3 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: pkg/unittest/lib/test_controller.js
===================================================================
--- pkg/unittest/lib/test_controller.js (revision 27419)
+++ pkg/unittest/lib/test_controller.js (working copy)
@@ -63,6 +63,8 @@
notifyStart();
function notifyDone() {
+ // TODO(ricow): REMOVE, debug info, see issue 13292
+ dartPrint('Calling notifyDone()');
if (testRunner) testRunner.notifyDone();
// To support in browser launching of tests we post back start and result
// messages to the window.opener.
@@ -73,6 +75,9 @@
}
function processMessage(msg) {
+ // TODO(ricow): REMOVE, debug info, see issue 13292
+ dartPrint('processMessage(): ' + msg);
+
if (typeof msg != 'string') return;
if (msg == 'unittest-suite-done') {
notifyDone();
« 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