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

Side by Side Diff: test/mjsunit/compare-table-lt.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-gteq.js ('k') | test/mjsunit/compare-table-lteq.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 [false,false,false,false,false,false,false,false,false,false,false,true ,false ,true ,true ,false,false],
8 [true ,false,false,false,false,false,false,false,false,false,true ,true ,false ,true ,true ,false,false],
9 [true ,false,false,false,false,false,false,false,false,false,true ,true ,false ,true ,true ,false,false],
10 [false,false,false,false,false,false,false,false,false,false,false,false,false ,false,false,false,false],
11 [true ,false,false,false,false,false,false,false,false,false,true ,true ,false ,true ,true ,false,false],
12 [true ,false,false,false,false,false,false,false,false,false,true ,true ,false ,true ,true ,false,false],
13 [true ,false,false,false,false,false,false,false,false,false,true ,true ,false ,true ,true ,false,false],
14 [true ,false,false,false,false,false,false,false,false,false,true ,true ,false ,true ,true ,false,false],
15 [true ,true ,true ,false,true ,true ,true ,true ,false,false,true ,true ,false ,true ,true ,false,false],
16 [true ,true ,true ,false,true ,true ,true ,true ,true ,false,true ,true ,false ,true ,true ,false,false],
17 [false,false,false,false,false,false,false,false,false,false,false,true ,false ,true ,true ,false,false],
18 [false,false,false,false,false,false,false,false,false,false,false,false,false ,true ,true ,false,false],
19 [true ,true ,true ,false,true ,true ,true ,true ,true ,true ,true ,true ,false ,true ,true ,false,false],
20 [false,false,false,false,false,false,false,false,false,false,false,false,false ,false,true ,false,false],
21 [false,false,false,false,false,false,false,false,false,false,false,false,false ,false,false,false,false],
22 [true ,true ,true ,false,true ,true ,true ,true ,true ,true ,true ,true ,true ,true ,true ,false,false],
23 [false,false,false,false,false,false,false,false,false,false,false,false,false ,false,false,false,false]
24 ];
25 var func = (function lt(a,b) { return a < b; });
26 var left_funcs = [
27 (function lt_L0(b) { return true < b; }),
28 (function lt_L1(b) { return false < b; }),
29 (function lt_L2(b) { return null < b; }),
30 (function lt_L3(b) { return void 0 < b; }),
31 (function lt_L4(b) { return 0 < b; }),
32 (function lt_L5(b) { return 0.0 < b; }),
33 (function lt_L6(b) { return -0 < b; }),
34 (function lt_L7(b) { return "" < b; }),
35 (function lt_L8(b) { return -1 < b; }),
36 (function lt_L9(b) { return -1.25 < b; }),
37 (function lt_L10(b) { return 1 < b; }),
38 (function lt_L11(b) { return 1.25 < b; }),
39 (function lt_L12(b) { return -2147483648 < b; }),
40 (function lt_L13(b) { return 2147483648 < b; }),
41 (function lt_L14(b) { return Infinity < b; }),
42 (function lt_L15(b) { return -Infinity < b; }),
43 (function lt_L16(b) { return NaN < b; })
44 ];
45 var right_funcs = [
46 (function lt_R0(a) { return a < true; }),
47 (function lt_R1(a) { return a < false; }),
48 (function lt_R2(a) { return a < null; }),
49 (function lt_R3(a) { return a < void 0; }),
50 (function lt_R4(a) { return a < 0; }),
51 (function lt_R5(a) { return a < 0.0; }),
52 (function lt_R6(a) { return a < -0; }),
53 (function lt_R7(a) { return a < ""; }),
54 (function lt_R8(a) { return a < -1; }),
55 (function lt_R9(a) { return a < -1.25; }),
56 (function lt_R10(a) { return a < 1; }),
57 (function lt_R11(a) { return a < 1.25; }),
58 (function lt_R12(a) { return a < -2147483648; }),
59 (function lt_R13(a) { return a < 2147483648; }),
60 (function lt_R14(a) { return a < Infinity; }),
61 (function lt_R15(a) { return a < -Infinity; }),
62 (function lt_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,t rue < 2147483648,true < Infinity,true < -Infinity,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,false < -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,n ull < 2147483648,null < Infinity,null < -Infinity,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,void 0 < 1,void 0 < 1 .25,void 0 < -2147483648,void 0 < 2147483648,void 0 < Infinity,void 0 < -Infinit y,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 < 2147483648,0 < Infinity,0 < -Infinit y,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 < 21474836 48,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 < Infini ty,-0 < -Infinity,-0 < NaN],
73 ["" < true,"" < false,"" < null,"" < void 0,"" < 0,"" < 0.0,"" < -0,"" < "", "" < -1,"" < -1.25,"" < 1,"" < 1.25,"" < -2147483648,"" < 2147483648,"" < Infini ty,"" < -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 < Infini ty,-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 < 2147483648,1 < Infinity,1 < -Infinit y,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 < -Infinity,1.25 < NaN],
78 [-2147483648 < true,-2147483648 < false,-2147483648 < null,-2147483648 < voi d 0,-2147483648 < 0,-2147483648 < 0.0,-2147483648 < -0,-2147483648 < "",-2147483 648 < -1,-2147483648 < -1.25,-2147483648 < 1,-2147483648 < 1.25,-2147483648 < -2 147483648,-2147483648 < 2147483648,-2147483648 < Infinity,-2147483648 < -Infinit y,-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,2147483648 < -2147483648,214 7483648 < 2147483648,2147483648 < Infinity,2147483648 < -Infinity,2147483648 < N aN],
80 [Infinity < true,Infinity < false,Infinity < null,Infinity < void 0,Infinity < 0,Infinity < 0.0,Infinity < -0,Infinity < "",Infinity < -1,Infinity < -1.25,I nfinity < 1,Infinity < 1.25,Infinity < -2147483648,Infinity < 2147483648,Infinit y < Infinity,Infinity < -Infinity,Infinity < NaN],
81 [-Infinity < true,-Infinity < false,-Infinity < null,-Infinity < void 0,-Inf inity < 0,-Infinity < 0.0,-Infinity < -0,-Infinity < "",-Infinity < -1,-Infinity < -1.25,-Infinity < 1,-Infinity < 1.25,-Infinity < -2147483648,-Infinity < 2147 483648,-Infinity < Infinity,-Infinity < -Infinity,-Infinity < NaN],
82 [NaN < true,NaN < false,NaN < null,NaN < void 0,NaN < 0,NaN < 0.0,NaN < -0,N aN < "",NaN < -1,NaN < -1.25,NaN < 1,NaN < 1.25,NaN < -2147483648,NaN < 21474836 48,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-gteq.js ('k') | test/mjsunit/compare-table-lteq.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698