The Tor Browser
/ file comparison
Search:
summary
shortlog
changelog
graph
tags
bookmarks
branches
files
help
file
revisions
annotate
diff
comparison
raw
comparison: js/src/jit-test/tests/parallel/Array-reducePar-sum.js
js/src/jit-test/tests/parallel/Array-reducePar-sum.js
changeset 0
6474c204b198
equal
deleted
inserted
replaced
-1:000000000000
0:b66005a218f4
1
load(libdir + "parallelarray-helpers.js");
2
3
function testReduce() {
4
function sum(v, p) { return v+p; }
5
assertArraySeqParResultsEq(range(1, 513), "reduce", sum);
6
}
7
8
if (getBuildConfiguration().parallelJS)
9
testReduce();