summaryrefslogtreecommitdiff
path: root/test/pummel/test-timers.js
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2011-02-18 11:20:42 -0800
committerRyan Dahl <ry@tinyclouds.org>2011-02-18 11:20:45 -0800
commit26e580bbc431b3801cbc99d7001235f58c704ba3 (patch)
treeaeb0a9226908c6b1ada44ade9632c588402a33e8 /test/pummel/test-timers.js
parent3313ff1d1b370d581e390f5826f9dbfce04f042e (diff)
downloadandroid-node-v8-26e580bbc431b3801cbc99d7001235f58c704ba3.tar.gz
android-node-v8-26e580bbc431b3801cbc99d7001235f58c704ba3.tar.bz2
android-node-v8-26e580bbc431b3801cbc99d7001235f58c704ba3.zip
Use console.error in test-timers
In attempt to understand buildbot failures.
Diffstat (limited to 'test/pummel/test-timers.js')
-rw-r--r--test/pummel/test-timers.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/pummel/test-timers.js b/test/pummel/test-timers.js
index 2a752adf30..4264835faa 100644
--- a/test/pummel/test-timers.js
+++ b/test/pummel/test-timers.js
@@ -17,7 +17,7 @@ setTimeout(function() {
var diff = endtime - starttime;
assert.ok(diff > 0);
- console.log('diff: ' + diff);
+ console.error('diff: ' + diff);
assert.equal(true, 1000 - WINDOW < diff && diff < 1000 + WINDOW);
setTimeout_called = true;
@@ -33,7 +33,7 @@ setInterval(function() {
var diff = endtime - starttime;
assert.ok(diff > 0);
- console.log('diff: ' + diff);
+ console.error('diff: ' + diff);
var t = interval_count * 1000;