File: 0001-src-state-disable-size-calculation-tests.patch

package info (click to toggle)
squeekboard 1.43.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,284 kB
  • sloc: ansic: 2,730; xml: 1,247; python: 296; sh: 48; makefile: 10
file content (314 lines) | stat: -rw-r--r-- 11,054 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
From: Arnaud Ferraris <aferraris@debian.org>
Date: Sun, 13 Oct 2024 00:32:51 +0200
Subject: src: state: disable size calculation tests

Those fail on (at least) i386 likely due to differences in floating
point precision.
---
 src/state.rs | 295 -----------------------------------------------------------
 1 file changed, 295 deletions(-)

diff --git a/src/state.rs b/src/state.rs
index 6034147..4a4ad2f 100644
--- a/src/state.rs
+++ b/src/state.rs
@@ -850,299 +850,4 @@ pub mod test {
             )), "Height of the panel is different.{}{}", log_message_about_scaling, value_of_scaling_setting_for_log
         );
     }
-
-    // TODO: Many of the values for expected_pixel_height and ArrangementKind for the devices in this list
-    // are not optimal (or close to that) yet.
-    // When the scaling-behaviour will be improved, those tests should be adjusted to check for
-    // more appropriate values.
-
-// Smartphones
-
-  // 4:3
-    #[test]
-    fn size_optimus_vu() {scaling_test_base(768, 1024, 76, 102, 2, 448)}
-    #[test]
-    fn size_optimus_vu_horizontal() {scaling_test_wide(1024, 768, 102, 76, 2, 320)}
-
-  // 5:3
-
-    #[test]
-    fn size_n900() {scaling_test_base(480, 800, 46, 76, 1, 280)}
-    #[test]
-    fn size_n900_horizontal() {scaling_test_wide(800, 480, 76, 46, 1, 240)}
-
-    #[test]
-    fn size_galaxy_xcover_2() {scaling_test_base(480, 800, 52, 87, 1, 280)}
-    #[test]
-    fn size_galaxy_xcover_2_horizontal() {scaling_test_wide(800, 480, 87, 52, 1, 240)}
-
-  // 16:9
-
-    #[test]
-    fn size_galaxy_s4_mini() {scaling_test_base(540, 960, 53, 95, 1, 315)}
-    #[test]
-    fn size_galaxy_s4_mini_horizontal() {scaling_test_wide(960, 540, 95, 53, 1, 270)}
-
-    #[test]
-    fn size_xperia_xz1_compact() {scaling_test_base(720, 1280, 57, 102, 2, 420)}
-    #[test]
-    fn size_xperia_xz1_compact_horizontal() {scaling_test_wide(1280, 720, 102, 57, 2, 360)}
-
-    #[test]
-    fn size_fairphone_2() {scaling_test_base(1080, 1920, 62, 111, 3, 630)}
-    #[test]
-    fn size_fairphone_2_horizontal() {scaling_test_wide(1920, 1080, 111, 62, 3, 540)}
-
-    #[test]
-    fn size_xperia_xa2() {scaling_test_base(1080, 1920, 65, 115, 3, 630)}
-    #[test]
-    fn size_xperia_xa2_horizontal() {scaling_test_wide(1920, 1080, 115, 65, 3, 540)}
-
-    #[test]
-    fn size_galaxy_e7() {scaling_test_base(720, 1280, 69, 122, 2, 420)}
-    #[test]
-    fn size_galaxy_e7_horizontal() {scaling_test_wide(1280, 720, 122, 69, 2, 360)}
-
-    #[test]
-    fn size_mi_note_2() {scaling_test_base(1080, 1920, 71, 126, 3, 630)}
-    #[test]
-    fn size_mi_note_2_horizontal() {scaling_test_wide(1920, 1080, 126, 71, 3, 540)}
-
-  // 2:1
-    #[test]
-    fn size_librem_5() {scaling_test_base(720, 1440, 65, 130, 2, 420)}
-    #[test]
-    fn size_librem_5_horizontal() {scaling_test_wide(1440, 720, 130, 65, 2, 360)}
-
-    #[test]
-    fn size_librem_5_scale1() {scaling_test_base(720, 1440, 65, 130, 1, 420)}
-    #[test]
-    fn size_librem_5_scale1_horizontal() {scaling_test_wide(1440, 720, 130, 65, 1, 360)}
-
-    #[test]
-    fn size_pinephone_pro() {scaling_test_base(720, 1440, 68, 136, 2, 420)}
-    #[test]
-    fn size_pinephone_pro_horizontal() {scaling_test_wide(1440, 720, 136, 68, 2, 360)}
-
-    #[test]
-    fn size_shift6mq() {scaling_test_base(1080, 2160, 68, 136, 3, 630)}
-    #[test]
-    fn size_shift6mq_horizontal() {scaling_test_wide(2160, 1080, 136, 68, 3, 540)}
-
-  // 18.7:9
-    #[test]
-    fn size_poco_f1() {scaling_test_base(1080, 2246, 68, 142, 3, 630)}
-    #[test]
-    fn size_poco_f1_horizontal() {scaling_test_wide(2246, 1080, 142, 68, 3, 540)}
-
-  // 19:9
-
-    #[test]
-    fn size_mi_a2_lite() {scaling_test_base(1080, 2280, 64, 134, 3, 630)}
-    #[test]
-    fn size_mi_a2_lite_horizontal() {scaling_test_wide(2280, 1080, 134, 64, 3, 540)}
-
-    #[test]
-    fn size_oneplus_6() {scaling_test_base(1080, 2280, 68, 144, 3, 630)}
-    #[test]
-    fn size_oneplus_6_horizontal() {scaling_test_wide(2280, 1080, 144, 68, 3, 540)}
-
-  // 19.5:9
-    #[test]
-    fn size_fairphone_4() {scaling_test_base(1080, 2340, 67, 145, 3, 630)}
-    #[test]
-    fn size_fairphone_4_horizontal() {scaling_test_wide(2340, 1080, 145, 67, 3, 540)}
-
-    #[test]
-    fn size_oneplus_6t() {scaling_test_base(1080, 2340, 68, 148, 3, 630)}
-    #[test]
-    fn size_oneplus_6t_horizontal() {scaling_test_wide(2340, 1080, 148, 68, 3, 540)}
-
-  // 20:9
-
-    #[test]
-    fn size_fairphone_5() {scaling_test_base(1224, 2720, 67, 150, 3, 714)}
-    #[test]
-    fn size_fairphone_5_horizontal() {scaling_test_wide(2720, 1224, 150, 67, 3, 612)}
-
-    #[test]
-    fn size_oneplus_8t() {scaling_test_base(1080, 2400, 70, 155, 3, 630)}
-    #[test]
-    fn size_oneplus_8t_horizontal() {scaling_test_wide(2400, 1080, 155, 70, 3, 540)}
-
-// Handheld gaming-devices
-
-  // 4:3
-    #[test]
-    fn size_nintendo_3ds_lower() {scaling_test_base(240, 320, 46, 61, 1, 140)}
-    #[test]
-    fn size_nintendo_3ds_lower_horizontal() {scaling_test_wide(320, 240, 61, 46, 1, 100)}
-
-  // 16:10
-    #[test]
-    fn size_steam_deck_lcd() {scaling_test_base(800, 1280, 94, 151, 1, 466)}
-    #[test]
-    fn size_steam_deck_lcd_horizontal() {scaling_test_wide(1280, 800, 151, 94, 1, 322)}
-
-    #[test]
-    fn size_steam_deck_oled() {scaling_test_base(800, 1280, 100, 159, 1, 466)}
-    #[test]
-    fn size_steam_deck_oled_horizontal() {scaling_test_wide(1280, 800, 159, 100, 1, 306)}
-
-    #[test]
-    fn size_legion_go() {scaling_test_wide(1600, 2560, 119, 190, 1, 500)}
-    #[test]
-    fn size_legion_go_horizontal() {scaling_test_wide(2560, 1600, 190, 119, 1, 533)}
-
-  // 5:3
-    #[test]
-    fn size_nintendo_3ds_upper() {scaling_test_base(240, 400, 46, 77, 1, 140)}
-    #[test]
-    fn size_nintendo_3ds_upper_horizontal() {scaling_test_wide(400, 240, 77, 46, 1, 120)}
-
-  // 16:9
-    #[test]
-    fn size_rog_ally() {scaling_test_base(1080, 1920, 87, 155, 1, 630)}
-    #[test]
-    fn size_rog_ally_horizontal() {scaling_test_wide(1920, 1080, 155, 87, 1, 470)}
-
-// Tablet-PCs
-
-  // 4:3
-    #[test]
-    fn size_galaxy_tab_a_8_0() {scaling_test_wide(768, 1024, 122, 163, 1, 240)}
-    #[test]
-    fn size_galaxy_tab_a_8_0_horizontal() {scaling_test_wide(1024, 768, 163, 122, 1, 256)}
-
-    #[test]
-    fn size_galaxy_tab_s2_9_7() {scaling_test_wide(1536, 2048, 148, 197, 2, 480)}
-    #[test]
-    fn size_galaxy_tab_s2_9_7_horizontal() {scaling_test_wide(2048, 1536, 197, 148, 2, 512)}
-
-  // 16:10
-    #[test]
-    fn size_galaxy_tab_3_8_0() {scaling_test_base(800, 1280, 108, 172, 1, 466)}
-    #[test]
-    fn size_galaxy_tab_3_8_0_horizontal() {scaling_test_wide(1280, 800, 172, 108, 1, 283)}
-
-    #[test]
-    fn size_pinetab2() {scaling_test_wide(800, 1280, 136, 218, 1, 250)}
-    #[test]
-    fn size_pinetab2_horizontal() {scaling_test_wide(1280, 800, 218, 136, 1, 266)}
-
-    #[test]
-    fn size_librem_11() {scaling_test_wide(1600, 2560, 155, 248, 1, 500)}
-    #[test]
-    fn size_librem_11_horizontal() {scaling_test_wide(2560, 1600, 248, 155, 1, 533)}
-
-  // 1.71:1
-    #[test]
-    fn size_galaxy_tab_2_7_0() {scaling_test_base(600, 1024, 90, 153, 1, 350)}
-    #[test]
-    fn size_galaxy_tab_2_7_0_horizontal() {scaling_test_wide(1024, 600, 153, 90, 1, 254)}
-
-// Notebook-PCs
-
-  // 16:10
-    #[test]
-    fn size_macbook_air_m1() {scaling_test_wide(1600, 2560, 179, 287, 2, 500)}
-    #[test]
-    fn size_macbook_air_m1_horizontal() {scaling_test_wide(2560, 1600, 287, 179, 2, 533)}
-
-  // 16:9
-    #[test]
-    fn size_notebook_pc_15() {scaling_test_wide(768, 1366, 194, 345, 1, 240)}
-    #[test]
-    fn size_notebook_pc_15_horizontal() {scaling_test_wide(1366, 768, 345, 194, 1, 256)}
-
-    #[test]
-    fn size_notebook_pc_15_1080() {scaling_test_wide(1080, 1920, 194, 345, 1, 337)}
-    #[test]
-    fn size_notebook_pc_15_1080_horizontal() {scaling_test_wide(1920, 1080, 345, 194, 1, 360)}
-
-    #[test]
-    fn size_notebook_pc_17() {scaling_test_wide(768, 1366, 215, 383, 1, 240)}
-    #[test]
-    fn size_notebook_pc_17_horizontal() {scaling_test_wide(1366, 768, 383, 215, 1, 256)}
-
-    #[test]
-    fn size_notebook_pc_17_1440() {scaling_test_wide(1080, 1920, 215, 383, 1, 337)}
-    #[test]
-    fn size_notebook_pc_17_1440_horizontal() {scaling_test_wide(1920, 1080, 383, 215, 1, 360)}
-
-// Monitors
-
-  // 5:4
-
-    #[test]
-    fn size_1280_1024_19_monitor() {scaling_test_wide(1024, 1280, 302, 377, 1, 320)}
-    #[test]
-    fn size_1280_1024_19_monitor_horizontal() {scaling_test_wide(1280, 1024, 377, 302, 1, 341)}
-
-  // 4:3
-    #[test]
-    fn size_crt_monitor() {scaling_test_wide(768, 1024, 229, 305, 1, 240)}
-    #[test]
-    fn size_crt_monitor_horizontal() {scaling_test_wide(1024, 768, 305, 229, 1, 256)}
-
-    #[test]
-    fn size_ntsc_monitor() {scaling_test_wide(480, 640, 305, 406, 1, 150)}
-    #[test]
-    fn size_ntsc_monitor_horizontal() {scaling_test_wide(640, 480, 406, 305, 1, 160)}
-
-    #[test]
-    fn size_pal_monitor() {scaling_test_wide(576, 768, 305, 406, 1, 180)}
-    #[test]
-    fn size_pal_monitor_horizontal() {scaling_test_wide(768, 576, 406, 305, 1, 192)}
-
-    #[test]
-    fn size_1600_1200_21_3_monitor() {scaling_test_wide(1200, 1600, 325, 433, 1, 375)}
-    #[test]
-    fn size_1600_1200_21_3_monitor_horizontal() {scaling_test_wide(1600, 1200, 433, 325, 1, 400)}
-
-  // 16:10
-
-    #[test]
-    fn size_1920_1200_22_5_monitor() {scaling_test_wide(1200, 1920, 303, 485, 1, 375)}
-    #[test]
-    fn size_1920_1200_22_5_monitor_horizontal() {scaling_test_wide(1920, 1200, 485, 303, 1, 400)}
-
-  // 16:9
-    #[test]
-    fn size_large_monitor() {scaling_test_wide(2160, 3840, 336, 598, 1, 675)}
-    #[test]
-    fn size_large_monitor_horizontal() {scaling_test_wide(3840, 2160, 598, 336, 1, 720)}
-
-    #[test]
-    fn size_very_large_monitor() {scaling_test_wide(2160, 3840, 473, 841, 1, 675)}
-    #[test]
-    fn size_very_large_monitor_horizontal() {scaling_test_wide(3840, 2160, 841, 473, 1, 720)}
-
-    #[test]
-    fn size_huge_monitor() {scaling_test_wide(2160, 3840, 598, 1063, 2, 675)}
-    #[test]
-    fn size_huge_monitor_horizontal() {scaling_test_wide(3840, 2160, 1063, 598, 2, 720)}
-
-    #[test]
-    fn size_uhd_2_monitor() {scaling_test_wide(4320, 7680, 685, 1218, 3, 1350)}
-    #[test]
-    fn size_uhd_2_monitor_horizontal() {scaling_test_wide(7680, 4320, 1218, 685, 3, 1440)}
-
-    #[test]
-    fn size_huge_uhd_2_monitor() {scaling_test_wide(4320, 7680, 1059, 1882, 4, 1350)}
-    #[test]
-    fn size_huge_uhd_2_monitor_horizontal() {scaling_test_wide(7680, 4320, 1882, 1059, 4, 1440)}
-
-  // 21.5:9
-    #[test]
-    fn size_very_wide_monitor() {scaling_test_wide(1440, 3440, 334, 797, 1, 450)}
-    #[test]
-    fn size_very_wide_monitor_horizontal() {scaling_test_wide(3440, 1440, 797, 334, 1, 480)}
-
-  // 32:9
-    #[test]
-    fn size_ultrawide_monitor() {scaling_test_wide(1440, 5120, 337, 1198, 1, 450)}
-    #[test]
-    fn size_ultrawide_monitor_horizontal() {scaling_test_wide(5120, 1440, 1198, 337, 1, 480)}
 }
-