Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(712)

Side by Side Diff: mozilla-tests/js1_5/Error/regress-465377.js

Issue 2865028: Update the mozilla tests to new version (as of 2010-06-29). (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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 JavaScript Engine testing utilities.
16 *
17 * The Initial Developer of the Original Code is
18 * Mozilla Foundation.
19 * Portions created by the Initial Developer are Copyright (C) 2008
20 * the Initial Developer. All Rights Reserved.
21 *
22 * Contributor(s): Igor Bukanov
23 *
24 * Alternatively, the contents of this file may be used under the terms of
25 * either the GNU General Public License Version 2 or later (the "GPL"), or
26 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
30 * use your version of this file under the terms of the MPL, indicate your
31 * decision by deleting the provisions above and replace them with the notice
32 * and other provisions required by the GPL or the LGPL. If you do not delete
33 * the provisions above, a recipient may use your version of this file under
34 * the terms of any one of the MPL, the GPL or the LGPL.
35 *
36 * ***** END LICENSE BLOCK ***** */
37
38 var gTestfile = 'regress-465377.js';
39 //-----------------------------------------------------------------------------
40 var BUGNUMBER = 465377;
41 var summary = 'instanceof relations between Error objects';
42 var actual = '';
43 var expect = '';
44
45
46 //-----------------------------------------------------------------------------
47 test();
48 //-----------------------------------------------------------------------------
49
50 function test()
51 {
52 enterFunc ('test');
53 printBugNumber(BUGNUMBER);
54 printStatus (summary);
55
56 expect = actual = 'No Exception';
57
58 try
59 {
60 var list = [
61 "Error",
62 "InternalError",
63 "EvalError",
64 "RangeError",
65 "ReferenceError",
66 "SyntaxError",
67 "TypeError",
68 "URIError"
69 ];
70 var instances = [];
71
72 for (var i = 0; i != list.length; ++i) {
73 var name = list[i];
74 var constructor = this[name];
75 var tmp = constructor.name;
76 if (tmp !== name)
77 throw "Bad value for "+name+".name: "+uneval(tmp);
78 instances[i] = new constructor();
79 }
80
81 for (var i = 0; i != instances.length; ++i) {
82 var instance = instances[i];
83 var name = instance.name;
84 var constructor = instance.constructor;
85 if (constructor !== this[name])
86 throw "Bad value of (new "+name+").constructor: "+uneval(tmp);
87 var tmp = constructor.name;
88 if (tmp !== name)
89 throw "Bad value for constructor.name: "+uneval(tmp);
90 if (!(instance instanceof Object))
91 throw "Bad instanceof Object for "+name;
92 if (!(instance instanceof Error))
93 throw "Bad instanceof Error for "+name;
94 if (!(instance instanceof constructor))
95 throw "Bad instanceof constructor for "+name;
96 if (instance instanceof Function)
97 throw "Bad instanceof Function for "+name;
98 for (var j = 1; j != instances.length; ++j) {
99 if (i != j && instance instanceof instances[j].constructor) {
100 throw "Unexpected (new "+name+") instanceof "+ instances[j].name;
101 }
102 }
103 }
104
105 print("OK");
106 }
107 catch(ex)
108 {
109 actual = ex + '';
110 }
111 reportCompare(expect, actual, summary);
112
113 exitFunc ('test');
114 }
OLDNEW
« no previous file with comments | « mozilla-tests/js1_5/Array/regress-474529.js ('k') | mozilla-tests/js1_5/GC/regress-383269-01.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698