Merge "fix: the incorrect version of tarball generated by gbs export" into tizen
[platform/upstream/js.git] / js / src / tests / ecma / Math / 15.8.2.16.js
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4  *
5  * The contents of this file are subject to the Mozilla Public License Version
6  * 1.1 (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  * http://www.mozilla.org/MPL/
9  *
10  * Software distributed under the License is distributed on an "AS IS" basis,
11  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12  * for the specific language governing rights and limitations under the
13  * License.
14  *
15  * The Original Code is Mozilla Communicator client code, released
16  * March 31, 1998.
17  *
18  * The Initial Developer of the Original Code is
19  * Netscape Communications Corporation.
20  * Portions created by the Initial Developer are Copyright (C) 1998
21  * the Initial Developer. All Rights Reserved.
22  *
23  * Contributor(s):
24  *
25  * Alternatively, the contents of this file may be used under the terms of
26  * either the GNU General Public License Version 2 or later (the "GPL"), or
27  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28  * in which case the provisions of the GPL or the LGPL are applicable instead
29  * of those above. If you wish to allow use of your version of this file only
30  * under the terms of either the GPL or the LGPL, and not to allow others to
31  * use your version of this file under the terms of the MPL, indicate your
32  * decision by deleting the provisions above and replace them with the notice
33  * and other provisions required by the GPL or the LGPL. If you do not delete
34  * the provisions above, a recipient may use your version of this file under
35  * the terms of any one of the MPL, the GPL or the LGPL.
36  *
37  * ***** END LICENSE BLOCK ***** */
38
39
40 /**
41    File Name:          15.8.2.16.js
42    ECMA Section:       15.8.2.16 sin( x )
43    Description:        return an approximation to the sine of the
44    argument.  argument is expressed in radians
45    Author:             christine@netscape.com
46    Date:               7 july 1997
47
48 */
49 var SECTION = "15.8.2.16";
50 var VERSION = "ECMA_1";
51 startTest();
52 var TITLE   = "Math.sin(x)";
53
54 writeHeaderToLog( SECTION + " "+ TITLE);
55
56 new TestCase( SECTION,
57               "Math.sin.length",
58               1,
59               Math.sin.length );
60
61 new TestCase( SECTION,
62               "Math.sin()",
63               Number.NaN,
64               Math.sin() );
65
66 new TestCase( SECTION,
67               "Math.sin(null)",
68               0,
69               Math.sin(null) );
70
71 new TestCase( SECTION,
72               "Math.sin(void 0)",
73               Number.NaN,
74               Math.sin(void 0) );
75
76 new TestCase( SECTION,
77               "Math.sin(false)",
78               0,
79               Math.sin(false) );
80
81 new TestCase( SECTION,
82               "Math.sin('2.356194490192')",
83               0.7071067811865,
84               Math.sin('2.356194490192') );
85
86 new TestCase( SECTION,
87               "Math.sin(NaN)",
88               Number.NaN,
89               Math.sin(Number.NaN) );
90
91 new TestCase( SECTION,
92               "Math.sin(0)",
93               0,
94               Math.sin(0) );
95
96 new TestCase( SECTION,
97               "Math.sin(-0)",
98               -0,
99               Math.sin(-0));
100
101 new TestCase( SECTION,
102               "Math.sin(Infinity)",
103               Number.NaN,
104               Math.sin(Number.POSITIVE_INFINITY));
105
106 new TestCase( SECTION,
107               "Math.sin(-Infinity)",
108               Number.NaN,
109               Math.sin(Number.NEGATIVE_INFINITY));
110
111 new TestCase( SECTION,
112               "Math.sin(0.7853981633974)",
113               0.7071067811865,
114               Math.sin(0.7853981633974));
115
116 new TestCase( SECTION,
117               "Math.sin(1.570796326795)",       
118               1,
119               Math.sin(1.570796326795));
120
121 new TestCase( SECTION,
122               "Math.sin(2.356194490192)",       
123               0.7071067811865,
124               Math.sin(2.356194490192));
125
126 new TestCase( SECTION,
127               "Math.sin(3.14159265359)",
128               0,
129               Math.sin(3.14159265359));
130
131 test();