summaryrefslogtreecommitdiff
path: root/js/src/jit-test/tests/basic/testDateNow.js
blob: 4fdb6b51c44ba17c4d5a3b3f7d32d9efa7029b83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function testDateNow() {
    // Accessing global.Date for the first time will change the global shape,
    // so do it before the loop starts; otherwise we have to loop an extra time
    // to pick things up.
    var time = Date.now();
    for (var j = 0; j < RUNLOOP; ++j)
        time = Date.now();
    return "ok";
}
assertEq(testDateNow(), "ok");
checkStats({
    recorderStarted: 1,
    recorderAborted: 0,
    traceTriggered: 1
});