Hi Paul,
Could you rerun the tests with following patch? (error message will be more verbose).
Thanks, Piotr
diff --git a/dlls/jscript/tests/api.js b/dlls/jscript/tests/api.js index 6af9bb8..7b1afe6 100644 --- a/dlls/jscript/tests/api.js +++ b/dlls/jscript/tests/api.js @@ -607,7 +607,7 @@ function equals(val, base) { num *= Math.pow(base, exp); }
- ok(num>val-val/1000 && num<val+val/1000, "equals: num = " + num); + ok(num>val-val/1000 && num<val+val/1000, "equals: num = " + num + " val = " + val + " base = " + base + " str = " + str); }
ok((10).toString(11) === "a", "(10).toString(11) = " + (10).toString(11));