summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/bug-1258407.js
blob: 9338c981f2e65984e59a6fde09da26d26df67a09 (plain)
1
2
3
4
5
6
7
8
9
10
|jit-test| error: Error
gcparam("lowFrequencyHeapGrowth", 0.1);
gcparam("lowFrequencyHeapGrowth", 2);
let ok = false;
try {
    gcparam("lowFrequencyHeapGrowth", 0x22222222);
} catch (e) {
    ok = true;
}
assertEq(ok, true);