Update ReadMe.md
[qtwebkit.git] / JSTests / microbenchmarks / tan.js
bloba3b1afc5f93b7087314807eddd16a6bc7d32db24
1 //@ skip if $hostOS == "windows"
2 // FIXME: unskip this test when https://bugs.webkit.org/show_bug.cgi?id=165194 is fixed.
4 (function () {
5     for (var i = 0; i < 3000000; ++i)
6         x = Math.tan(i);
8     if (x != 1.8222665884307354)
9         throw "Error: bad result: " + x;
10 })();