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

Side by Side Diff: test/mjsunit/compare-table-seq.js

Issue 1069673002: Add more systematic tests for comparisons. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 8 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
« no previous file with comments | « test/mjsunit/compare-table-ne.js ('k') | test/mjsunit/compare-table-sne.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 var values = [true,false,null,void 0,0,0.0,-0,"",-1,-1.25,1,1.25,-2147483648,214 7483648,Infinity,-Infinity,NaN];
6 var expected = [
7 [true ,false,false,false,false,false,false,false,false,false,false,false,false ,false,false,false,false],
8 [false,true ,false,false,false,false,false,false,false,false,false,false,false ,false,false,false,false],
9 [false,false,true ,false,false,false,false,false,false,false,false,false,false ,false,false,false,false],
10 [false,false,false,true ,false,false,false,false,false,false,false,false,false ,false,false,false,false],
11 [false,false,false,false,true ,true ,true ,false,false,false,false,false,false ,false,false,false,false],
12 [false,false,false,false,true ,true ,true ,false,false,false,false,false,false ,false,false,false,false],
13 [false,false,false,false,true ,true ,true ,false,false,false,false,false,false ,false,false,false,false],
14 [false,false,false,false,false,false,false,true ,false,false,false,false,false ,false,false,false,false],
15 [false,false,false,false,false,false,false,false,true ,false,false,false,false ,false,false,false,false],
16 [false,false,false,false,false,false,false,false,false,true ,false,false,false ,false,false,false,false],
17 [false,false,false,false,false,false,false,false,false,false,true ,false,false ,false,false,false,false],
18 [false,false,false,false,false,false,false,false,false,false,false,true ,false ,false,false,false,false],
19 [false,false,false,false,false,false,false,false,false,false,false,false,true ,false,false,false,false],
20 [false,false,false,false,false,false,false,false,false,false,false,false,false ,true ,false,false,false],
21 [false,false,false,false,false,false,false,false,false,false,false,false,false ,false,true ,false,false],
22 [false,false,false,false,false,false,false,false,false,false,false,false,false ,false,false,true ,false],
23 [false,false,false,false,false,false,false,false,false,false,false,false,false ,false,false,false,false]
24 ];
25 var func = (function seq(a,b) { return a === b; });
26 var left_funcs = [
27 (function seq_L0(b) { return true === b; }),
28 (function seq_L1(b) { return false === b; }),
29 (function seq_L2(b) { return null === b; }),
30 (function seq_L3(b) { return void 0 === b; }),
31 (function seq_L4(b) { return 0 === b; }),
32 (function seq_L5(b) { return 0.0 === b; }),
33 (function seq_L6(b) { return -0 === b; }),
34 (function seq_L7(b) { return "" === b; }),
35 (function seq_L8(b) { return -1 === b; }),
36 (function seq_L9(b) { return -1.25 === b; }),
37 (function seq_L10(b) { return 1 === b; }),
38 (function seq_L11(b) { return 1.25 === b; }),
39 (function seq_L12(b) { return -2147483648 === b; }),
40 (function seq_L13(b) { return 2147483648 === b; }),
41 (function seq_L14(b) { return Infinity === b; }),
42 (function seq_L15(b) { return -Infinity === b; }),
43 (function seq_L16(b) { return NaN === b; })
44 ];
45 var right_funcs = [
46 (function seq_R0(a) { return a === true; }),
47 (function seq_R1(a) { return a === false; }),
48 (function seq_R2(a) { return a === null; }),
49 (function seq_R3(a) { return a === void 0; }),
50 (function seq_R4(a) { return a === 0; }),
51 (function seq_R5(a) { return a === 0.0; }),
52 (function seq_R6(a) { return a === -0; }),
53 (function seq_R7(a) { return a === ""; }),
54 (function seq_R8(a) { return a === -1; }),
55 (function seq_R9(a) { return a === -1.25; }),
56 (function seq_R10(a) { return a === 1; }),
57 (function seq_R11(a) { return a === 1.25; }),
58 (function seq_R12(a) { return a === -2147483648; }),
59 (function seq_R13(a) { return a === 2147483648; }),
60 (function seq_R14(a) { return a === Infinity; }),
61 (function seq_R15(a) { return a === -Infinity; }),
62 (function seq_R16(a) { return a === NaN; })
63 ];
64 function matrix() {
65 return [
66 [true === true,true === false,true === null,true === void 0,true === 0,true === 0.0,true === -0,true === "",true === -1,true === -1.25,true === 1,true === 1 .25,true === -2147483648,true === 2147483648,true === Infinity,true === -Infinit y,true === NaN],
67 [false === true,false === false,false === null,false === void 0,false === 0, false === 0.0,false === -0,false === "",false === -1,false === -1.25,false === 1 ,false === 1.25,false === -2147483648,false === 2147483648,false === Infinity,fa lse === -Infinity,false === NaN],
68 [null === true,null === false,null === null,null === void 0,null === 0,null === 0.0,null === -0,null === "",null === -1,null === -1.25,null === 1,null === 1 .25,null === -2147483648,null === 2147483648,null === Infinity,null === -Infinit y,null === NaN],
69 [void 0 === true,void 0 === false,void 0 === null,void 0 === void 0,void 0 = == 0,void 0 === 0.0,void 0 === -0,void 0 === "",void 0 === -1,void 0 === -1.25,v oid 0 === 1,void 0 === 1.25,void 0 === -2147483648,void 0 === 2147483648,void 0 === Infinity,void 0 === -Infinity,void 0 === NaN],
70 [0 === true,0 === false,0 === null,0 === void 0,0 === 0,0 === 0.0,0 === -0,0 === "",0 === -1,0 === -1.25,0 === 1,0 === 1.25,0 === -2147483648,0 === 21474836 48,0 === Infinity,0 === -Infinity,0 === NaN],
71 [0.0 === true,0.0 === false,0.0 === null,0.0 === void 0,0.0 === 0,0.0 === 0. 0,0.0 === -0,0.0 === "",0.0 === -1,0.0 === -1.25,0.0 === 1,0.0 === 1.25,0.0 === -2147483648,0.0 === 2147483648,0.0 === Infinity,0.0 === -Infinity,0.0 === NaN],
72 [-0 === true,-0 === false,-0 === null,-0 === void 0,-0 === 0,-0 === 0.0,-0 = == -0,-0 === "",-0 === -1,-0 === -1.25,-0 === 1,-0 === 1.25,-0 === -2147483648,- 0 === 2147483648,-0 === Infinity,-0 === -Infinity,-0 === NaN],
73 ["" === true,"" === false,"" === null,"" === void 0,"" === 0,"" === 0.0,"" = == -0,"" === "","" === -1,"" === -1.25,"" === 1,"" === 1.25,"" === -2147483648," " === 2147483648,"" === Infinity,"" === -Infinity,"" === NaN],
74 [-1 === true,-1 === false,-1 === null,-1 === void 0,-1 === 0,-1 === 0.0,-1 = == -0,-1 === "",-1 === -1,-1 === -1.25,-1 === 1,-1 === 1.25,-1 === -2147483648,- 1 === 2147483648,-1 === Infinity,-1 === -Infinity,-1 === NaN],
75 [-1.25 === true,-1.25 === false,-1.25 === null,-1.25 === void 0,-1.25 === 0, -1.25 === 0.0,-1.25 === -0,-1.25 === "",-1.25 === -1,-1.25 === -1.25,-1.25 === 1 ,-1.25 === 1.25,-1.25 === -2147483648,-1.25 === 2147483648,-1.25 === Infinity,-1 .25 === -Infinity,-1.25 === NaN],
76 [1 === true,1 === false,1 === null,1 === void 0,1 === 0,1 === 0.0,1 === -0,1 === "",1 === -1,1 === -1.25,1 === 1,1 === 1.25,1 === -2147483648,1 === 21474836 48,1 === Infinity,1 === -Infinity,1 === NaN],
77 [1.25 === true,1.25 === false,1.25 === null,1.25 === void 0,1.25 === 0,1.25 === 0.0,1.25 === -0,1.25 === "",1.25 === -1,1.25 === -1.25,1.25 === 1,1.25 === 1 .25,1.25 === -2147483648,1.25 === 2147483648,1.25 === Infinity,1.25 === -Infinit y,1.25 === NaN],
78 [-2147483648 === true,-2147483648 === false,-2147483648 === null,-2147483648 === void 0,-2147483648 === 0,-2147483648 === 0.0,-2147483648 === -0,-2147483648 === "",-2147483648 === -1,-2147483648 === -1.25,-2147483648 === 1,-2147483648 = == 1.25,-2147483648 === -2147483648,-2147483648 === 2147483648,-2147483648 === I nfinity,-2147483648 === -Infinity,-2147483648 === NaN],
79 [2147483648 === true,2147483648 === false,2147483648 === null,2147483648 === void 0,2147483648 === 0,2147483648 === 0.0,2147483648 === -0,2147483648 === "", 2147483648 === -1,2147483648 === -1.25,2147483648 === 1,2147483648 === 1.25,2147 483648 === -2147483648,2147483648 === 2147483648,2147483648 === Infinity,2147483 648 === -Infinity,2147483648 === NaN],
80 [Infinity === true,Infinity === false,Infinity === null,Infinity === void 0, Infinity === 0,Infinity === 0.0,Infinity === -0,Infinity === "",Infinity === -1, Infinity === -1.25,Infinity === 1,Infinity === 1.25,Infinity === -2147483648,Inf inity === 2147483648,Infinity === Infinity,Infinity === -Infinity,Infinity === N aN],
81 [-Infinity === true,-Infinity === false,-Infinity === null,-Infinity === voi d 0,-Infinity === 0,-Infinity === 0.0,-Infinity === -0,-Infinity === "",-Infinit y === -1,-Infinity === -1.25,-Infinity === 1,-Infinity === 1.25,-Infinity === -2 147483648,-Infinity === 2147483648,-Infinity === Infinity,-Infinity === -Infinit y,-Infinity === NaN],
82 [NaN === true,NaN === false,NaN === null,NaN === void 0,NaN === 0,NaN === 0. 0,NaN === -0,NaN === "",NaN === -1,NaN === -1.25,NaN === 1,NaN === 1.25,NaN === -2147483648,NaN === 2147483648,NaN === Infinity,NaN === -Infinity,NaN === NaN]
83 ];
84 }
85 function test() {
86 for (var i = 0; i < values.length; i++) {
87 for (var j = 0; j < values.length; j++) {
88 var a = values[i];
89 var b = values[j];
90 var x = expected[i][j];
91 assertEquals(x, func(a,b));
92 assertEquals(x, left_funcs[i](b));
93 assertEquals(x, right_funcs[j](a));
94 }
95 }
96
97 var result = matrix();
98 for (var i = 0; i < values.length; i++) {
99 for (var j = 0; j < values.length; j++) {
100 assertEquals(expected[i][j], result[i][j]);
101 }
102 }
103 }
104 test();
105 test();
OLDNEW
« no previous file with comments | « test/mjsunit/compare-table-ne.js ('k') | test/mjsunit/compare-table-sne.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698