summaryrefslogtreecommitdiff
path: root/test/pummel/test-process-uptime.js
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2011-03-14 17:48:05 -0700
committerRyan Dahl <ry@tinyclouds.org>2011-03-14 17:50:24 -0700
commit3c0dd8196aeb2352a16ab41c296165747e8d52f3 (patch)
treeb292c532f4fa39165771e20c3d97059a913e1279 /test/pummel/test-process-uptime.js
parent247d88011349be8e8b47486b67b70842de09a43c (diff)
downloadandroid-node-v8-3c0dd8196aeb2352a16ab41c296165747e8d52f3.tar.gz
android-node-v8-3c0dd8196aeb2352a16ab41c296165747e8d52f3.tar.bz2
android-node-v8-3c0dd8196aeb2352a16ab41c296165747e8d52f3.zip
Fix test-process-uptime.js test
Diffstat (limited to 'test/pummel/test-process-uptime.js')
-rw-r--r--test/pummel/test-process-uptime.js33
1 files changed, 33 insertions, 0 deletions
diff --git a/test/pummel/test-process-uptime.js b/test/pummel/test-process-uptime.js
new file mode 100644
index 0000000000..6919336f92
--- /dev/null
+++ b/test/pummel/test-process-uptime.js
@@ -0,0 +1,33 @@
+// Copyright Joyent, Inc. and other Node contributors.
+//
+// Permission is hereby granted, free of charge, to any person obtaining a
+// copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to permit
+// persons to whom the Software is furnished to do so, subject to the
+// following conditions:
+//
+// The above copyright notice and this permission notice shall be included
+// in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
+// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
+// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
+// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
+// USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+var assert = require('assert');
+
+console.error(process.uptime());
+assert.ok(process.uptime() <= 0.9);
+
+setTimeout(function() {
+ var uptime = process.uptime();
+ // some wiggle room to account for timer
+ // granularity, processor speed, and scheduling
+ assert.ok(uptime >= 2);
+ assert.ok(uptime <= 3);
+}, 2000);