mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
478 B
20 lines
478 B
13 years ago
|
var common = require('../common');
|
||
|
var assert = require('assert');
|
||
|
|
||
|
var start = process.hrtime();
|
||
|
|
||
|
// process.hrtime() should return an Array
|
||
|
assert(Array.isArray(start));
|
||
|
|
||
|
// busy-loop for 2 seconds
|
||
|
var now = Date.now();
|
||
|
while (Date.now() - now < 2000);
|
||
|
|
||
|
// get a diff reading
|
||
|
var diff = process.hrtime(start);
|
||
|
|
||
|
// should be at least 1 second, at most 2 seconds later
|
||
|
// (the while loop will usually exit a few nanoseconds before 2)
|
||
|
assert(diff[0] >= 1);
|
||
|
assert(diff[0] <= 2);
|