summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Memory-allocationSamplingProbability-01.js
blob: 3dbd7be9d9dcb63c78689c24ea9fac170e04ea8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Test that setting Debugger.Memory.prototype.allocationSamplingProbability to
// a bad number throws.

load(libdir + "asserts.js");

const root = newGlobal({newCompartment: true});

const dbg = new Debugger();
const wrappedRoot = dbg.addDebuggee(root);

var mem = dbg.memory;

// Out of range, negative
assertThrowsInstanceOf(() => mem.allocationSamplingProbability = -Number.MAX_VALUE,
                       TypeError);
assertThrowsInstanceOf(() => mem.allocationSamplingProbability = -1,
                       TypeError);
assertThrowsInstanceOf(() => mem.allocationSamplingProbability = -Number.MIN_VALUE,
                       TypeError);

// In range
mem.allocationSamplingProbability = -0.0;
mem.allocationSamplingProbability = 0.0;
mem.allocationSamplingProbability = Number.MIN_VALUE;
mem.allocationSamplingProbability = 1 / 3;
mem.allocationSamplingProbability = .5;
mem.allocationSamplingProbability = 2 / 3;
mem.allocationSamplingProbability = 1 - Math.pow(2, -53);
mem.allocationSamplingProbability = 1;

// Out of range, positive
assertThrowsInstanceOf(() => mem.allocationSamplingProbability = 1 + Number.EPSILON,
                       TypeError);
assertThrowsInstanceOf(() => mem.allocationSamplingProbability = 2,
                       TypeError);
assertThrowsInstanceOf(() => mem.allocationSamplingProbability = Number.MAX_VALUE,
                       TypeError);

// Out of range, non-finite
assertThrowsInstanceOf(() => mem.allocationSamplingProbability = -Infinity,
                       TypeError);
assertThrowsInstanceOf(() => mem.allocationSamplingProbability = Infinity,
                       TypeError);
assertThrowsInstanceOf(() => mem.allocationSamplingProbability = NaN,
                       TypeError);