Remove benchmarks

pull/585/head
Isaac Mills 2 years ago
parent 9946283b3b
commit 72decb500f
No known key found for this signature in database
GPG Key ID: B67D7410F33A0F61

@ -547,54 +547,6 @@ mod tests {
chunks.windows(2).for_each(|w| assert!(w[0].y <= w[1].y));
}
#[bench]
fn bench_vertical_split_by_height(b: &mut test::Bencher) {
let target = Rect {
x: 2,
y: 2,
width: 10,
height: 10,
};
b.iter(|| {
Layout::default()
.direction(Direction::Vertical)
.constraints(
[
Constraint::Percentage(10),
Constraint::Max(5),
Constraint::Min(1),
]
.as_ref(),
)
.split(target)
});
}
#[bench]
fn bench_vertical_split_by_height_ref(b: &mut test::Bencher) {
let target = Rect {
x: 2,
y: 2,
width: 10,
height: 10,
};
b.iter(|| {
Layout::default()
.direction(Direction::Vertical)
.constraints(
[
Constraint::Percentage(10),
Constraint::Max(5),
Constraint::Min(1),
]
.as_ref(),
)
.split_ref(target)
});
}
#[test]
fn test_rect_size_truncation() {
for width in 256u16..300u16 {

@ -160,8 +160,6 @@
//! default the computed layout tries to fill the available space completely. So if for any reason
//! you might need a blank space somewhere, try to pass an additional constraint and don't use the
//! corresponding area.
#![feature(test)]
extern crate test;
pub mod backend;
pub mod buffer;

Loading…
Cancel
Save