зеркало из https://github.com/mozilla/gecko-dev.git
JavaScript Tests - relax randomness check for bug 211590 to prevent spurious failures
This commit is contained in:
Родитель
a7758bc9fd
Коммит
b6b0a842dc
|
@ -41,7 +41,7 @@ var gTestfile = 'regress-211590.js';
|
||||||
var BUGNUMBER = 211590;
|
var BUGNUMBER = 211590;
|
||||||
var summary = 'Math.random should be random';
|
var summary = 'Math.random should be random';
|
||||||
var actual = '';
|
var actual = '';
|
||||||
var expect = 'between 48.5% and 51.5%';
|
var expect = 'between 48% and 52%';
|
||||||
|
|
||||||
printBugNumber(BUGNUMBER);
|
printBugNumber(BUGNUMBER);
|
||||||
printStatus (summary);
|
printStatus (summary);
|
||||||
|
@ -65,7 +65,7 @@ for ( var i = 0; i < n; ++i )
|
||||||
odd1 *= 100 / n;
|
odd1 *= 100 / n;
|
||||||
odd2 *= 100 / n;
|
odd2 *= 100 / n;
|
||||||
|
|
||||||
if (odd1 >= 48.5 && odd1 <= 51.5)
|
if (odd1 >= 48 && odd1 <= 52)
|
||||||
{
|
{
|
||||||
actual = expect;
|
actual = expect;
|
||||||
}
|
}
|
||||||
|
@ -76,7 +76,7 @@ else
|
||||||
|
|
||||||
reportCompare(expect, actual, summary);
|
reportCompare(expect, actual, summary);
|
||||||
|
|
||||||
if (odd2 >= 48.5 && odd2 <= 51.5)
|
if (odd2 >= 48 && odd2 <= 52)
|
||||||
{
|
{
|
||||||
actual = expect;
|
actual = expect;
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче