]>
git.saurik.com Git - apple/javascriptcore.git/blob - tests/mozilla/js1_3/shell.js
10 var GLOBAL
= "[object global]";
11 var PASSED
= " PASSED!"
12 var FAILED
= " FAILED! expected: ";
15 for ( tc
=0; tc
< testcases
.length
; tc
++ ) {
16 testcases
[tc
].passed
= writeTestCaseResult(
19 testcases
[tc
].description
+" = "+
20 testcases
[tc
].actual
);
22 testcases
[tc
].reason
+= ( testcases
[tc
].passed
) ? "" : "wrong value ";
28 /* wrapper for test cas constructor that doesn't require the SECTION
32 function AddTestCase( description
, expect
, actual
) {
33 testcases
[tc
++] = new TestCase( SECTION
, description
, expect
, actual
);
36 function TestCase( n
, d
, e
, a
) {
43 this.bugnumber
= BUGNUMBER
;
45 this.passed
= getTestCaseResult( this.expect
, this.actual
);
47 writeLineToLog( "added " + this.description
);
50 function startTest() {
51 // JavaScript 1.3 is supposed to be compliant ecma version 1.0
52 if ( VERSION
== "ECMA_1" ) {
55 if ( VERSION
== "JS_1.3" ) {
58 if ( VERSION
== "JS_1.2" ) {
61 if ( VERSION
== "JS_1.1" ) {
64 // for ecma version 2.0, we will leave the javascript version to
65 // the default ( for now ).
68 writeLineToLog ("BUGNUMBER: " + BUGNUMBER
);
71 testcases
= new Array();
74 function getTestCaseResult( expect
, actual
) {
75 // because ( NaN == NaN ) always returns false, need to do
76 // a special compare to see if we got the right result.
77 if ( actual
!= actual
) {
78 if ( typeof actual
== "object" ) {
79 actual
= "NaN object";
81 actual
= "NaN number";
84 if ( expect
!= expect
) {
85 if ( typeof expect
== "object" ) {
86 expect
= "NaN object";
88 expect
= "NaN number";
92 var passed
= ( expect
== actual
) ? true : false;
94 // if both objects are numbers
95 // need to replace w/ IEEE standard for rounding
97 && typeof(actual
) == "number"
98 && typeof(expect
) == "number"
100 if ( Math
.abs(actual
-expect
) < 0.0000001 ) {
105 // verify type is the same
106 if ( typeof(expect
) != typeof(actual
) ) {
112 function writeTestCaseResult( expect
, actual
, string
) {
113 var passed
= getTestCaseResult( expect
, actual
);
114 writeFormattedResult( expect
, actual
, string
, passed
);
117 function writeFormattedResult( expect
, actual
, string
, passed
) {
118 var s
= TT
+ string
;
121 k
< (60 - string
.length
>= 0 ? 60 - string
.length : 5) ;
126 s
+= ( passed
) ? FONT_GREEN
+ NBSP
+ PASSED : FONT_RED
+ NBSP
+ FAILED
+ expect
+ TT_
;
128 writeLineToLog( s
+ FONT_
+ B_
+ TT_
);
133 * Begin printing functions. These functions use the shell's
134 * print function. When running tests in the browser, these
135 * functions, override these functions with functions that use
139 function writeTestCaseResult( expect
, actual
, string
) {
140 var passed
= getTestCaseResult( expect
, actual
);
141 writeFormattedResult( expect
, actual
, string
, passed
);
144 function writeFormattedResult( expect
, actual
, string
, passed
) {
146 s
+= ( passed
) ? PASSED : FAILED
+ expect
;
150 function writeLineToLog( string
) {
153 function writeHeaderToLog( string
) {
156 /* end of print functions */
158 function stopTest() {
160 if ( gc
!= undefined ) {