Skip to content

Commit 06d6a54

Browse files
committed
increase collect duration for stress tests
1 parent 8801ba3 commit 06d6a54

1 file changed

Lines changed: 23 additions & 23 deletions

File tree

src/bin/collect.rs

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ impl Commands {
104104
("benchmark".to_string(), None),
105105
("mode".to_string(), Some("sprite".to_string())),
106106
],
107-
10000,
107+
20000,
108108
)),
109109
Box::new(stress_tests::StressTest::on(
110110
"bevymark".to_string(),
@@ -114,7 +114,7 @@ impl Commands {
114114
("benchmark".to_string(), None),
115115
("mode".to_string(), Some("mesh2d".to_string())),
116116
],
117-
5000,
117+
10000,
118118
)),
119119
Box::new(stress_tests::StressTest::on(
120120
"bevymark".to_string(),
@@ -125,7 +125,7 @@ impl Commands {
125125
("mode".to_string(), Some("sprite_mesh".to_string())),
126126
("alpha-mode".to_string(), Some("alpha_mask".to_string())),
127127
],
128-
5000,
128+
10000,
129129
)),
130130
Box::new(stress_tests::StressTest::on(
131131
"bevymark".to_string(),
@@ -136,67 +136,67 @@ impl Commands {
136136
("mode".to_string(), Some("sprite_mesh".to_string())),
137137
("alpha-mode".to_string(), Some("blend".to_string())),
138138
],
139-
5000,
139+
10000,
140140
)),
141141
Box::new(stress_tests::StressTest::on(
142142
"many_animated_sprites".to_string(),
143143
vec![],
144-
30000,
144+
50000,
145145
)),
146146
Box::new(stress_tests::StressTest::on(
147147
"many_buttons".to_string(),
148148
vec![],
149-
5000,
149+
10000,
150150
)),
151151
Box::new(stress_tests::StressTest::on(
152152
"many_cubes".to_string(),
153153
vec![("benchmark".to_string(), None)],
154-
15000,
154+
20000,
155155
)),
156156
Box::new(stress_tests::StressTest::on(
157157
"many_foxes".to_string(),
158158
vec![],
159-
15000,
159+
30000,
160160
)),
161161
Box::new(stress_tests::StressTest::on(
162162
"many_morph_targets".to_string(),
163163
vec![],
164-
15000,
164+
30000,
165165
)),
166166
Box::new(stress_tests::StressTest::on(
167167
"many_gizmos".to_string(),
168168
vec![],
169-
5000,
169+
10000,
170170
)),
171171
Box::new(stress_tests::StressTest::on(
172172
"many_glyphs".to_string(),
173173
vec![],
174-
10000,
174+
15000,
175175
)),
176176
Box::new(stress_tests::StressTest::on(
177177
"many_gradients".to_string(),
178178
vec![],
179-
20000,
179+
40000,
180180
)),
181181
Box::new(stress_tests::StressTest::on(
182182
"many_lights".to_string(),
183183
vec![],
184-
5000,
184+
10000,
185185
)),
186186
Box::new(stress_tests::StressTest::on(
187187
"many_materials".to_string(),
188188
vec![],
189-
20000,
189+
40000,
190190
)),
191191
Box::new(stress_tests::StressTest::on(
192192
"many_sprites".to_string(),
193193
vec![],
194-
30000,
194+
60000,
195195
)),
196196
Box::new(stress_tests::StressTest::on(
197197
"many_text2d".to_string(),
198198
vec![],
199-
20000,
199+
30000,
200200
)),
201201
Box::new(stress_tests::StressTest::on(
202202
"bevymark_3d".to_string(),
@@ -206,7 +206,7 @@ impl Commands {
206206
("per-wave".to_string(), Some("200".to_string())),
207207
("alpha-mode".to_string(), Some("blend".to_string())),
208208
],
209-
10000,
209+
20000,
210210
)),
211211
Box::new(stress_tests::StressTest::on(
212212
"bevymark_3d".to_string(),
@@ -216,7 +216,7 @@ impl Commands {
216216
("per-wave".to_string(), Some("500".to_string())),
217217
("alpha-mode".to_string(), Some("opaque".to_string())),
218218
],
219-
10000,
219+
20000,
220220
)),
221221
Box::new(stress_tests::StressTest::on(
222222
"bevymark_3d".to_string(),
@@ -226,7 +226,7 @@ impl Commands {
226226
("per-wave".to_string(), Some("500".to_string())),
227227
("alpha-mode".to_string(), Some("alpha_mask".to_string())),
228228
],
229-
10000,
229+
20000,
230230
)),
231231
Box::new(
232232
stress_tests::StressTest::on(
@@ -277,24 +277,24 @@ impl Commands {
277277
large_scenes::LargeScene::on(
278278
"bistro".to_string(),
279279
vec![("compress".to_string(), None)],
280-
25000,
280+
30000,
281281
)
282282
.with_features(vec!["mipmap_generator/compress"]),
283283
),
284284
Box::new(large_scenes::LargeScene::on(
285285
"bistro".to_string(),
286286
vec![("no-mip-generation".to_string(), None)],
287-
25000,
287+
30000,
288288
)),
289289
Box::new(large_scenes::LargeScene::on(
290290
"caldera_hotel".to_string(),
291291
vec![],
292-
25000,
292+
30000,
293293
)),
294294
Box::new(large_scenes::LargeScene::on(
295295
"bevy_city".to_string(),
296296
vec![("no-cpu-culling".into(), None)],
297-
25000,
297+
30000,
298298
)),
299299
]
300300
} else {

0 commit comments

Comments
 (0)