blob: c9320f72cda1abf3a585ea1857bc59c44f6284b6 (
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
|
function testGetParam(key) {
gcparam(key);
}
function testChangeParam(key) {
let prev = gcparam(key);
let value = prev - 1;
gcparam(key, value);
assertEq(gcparam(key), value);
gcparam(key, prev);
}
function testLargeParamValue(key) {
let prev = gcparam(key);
const value = 1000000;
gcparam(key, value);
assertEq(gcparam(key), value);
gcparam(key, prev);
}
testGetParam("gcBytes");
testGetParam("gcNumber");
testGetParam("unusedChunks");
testGetParam("totalChunks");
testChangeParam("maxBytes");
testChangeParam("maxMallocBytes");
testChangeParam("mode");
testChangeParam("sliceTimeBudget");
testChangeParam("markStackLimit");
testChangeParam("highFrequencyTimeLimit");
testChangeParam("highFrequencyLowLimit");
testChangeParam("highFrequencyHighLimit");
testChangeParam("highFrequencyHeapGrowthMax");
testChangeParam("highFrequencyHeapGrowthMin");
testChangeParam("lowFrequencyHeapGrowth");
testChangeParam("dynamicHeapGrowth");
testChangeParam("dynamicMarkSlice");
testChangeParam("allocationThreshold");
testChangeParam("minEmptyChunkCount");
testChangeParam("maxEmptyChunkCount");
testChangeParam("compactingEnabled");
testLargeParamValue("highFrequencyLowLimit");
testLargeParamValue("highFrequencyHighLimit");
|