Author: [email protected]
Date: Mon Jun 15 08:57:06 2009
New Revision: 2173
Modified:
branches/bleeding_edge/test/mjsunit/sin-cos.js
Log:
Another attempt at fixing sine & cosine test.
[email protected]
Review URL: http://codereview.chromium.org/125129
Modified: branches/bleeding_edge/test/mjsunit/sin-cos.js
==============================================================================
--- branches/bleeding_edge/test/mjsunit/sin-cos.js (original)
+++ branches/bleeding_edge/test/mjsunit/sin-cos.js Mon Jun 15 08:57:06 2009
@@ -27,21 +27,14 @@
// Test Math.sin and Math.cos.
-var input_sin = [0, Math.PI, Math.PI / 6, Math.PI / 2];
-var input_cos = [0, Math.PI, Math.PI / 6, Math.PI / 2];
+var input_sin = [0, Math.PI / 2];
+var input_cos = [0, Math.PI];
var output_sin = input_sin.map(Math.sin);
-var output_cos = input_sin.map(Math.cos);
+var output_cos = input_cos.map(Math.cos);
-var expected_sin = [0,
- 1.2246063538223773e-16,
- 0.49999999999999994,
- 1];
-
-var expected_cos = [1,
- -1,
- 0.8660254037844387,
- 6.123031769111886e-17];
+var expected_sin = [0, 1];
+var expected_cos = [1, -1];
assertArrayEquals(expected_sin, output_sin, "sine");
assertArrayEquals(expected_cos, output_cos, "cosine");
--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---