summaryrefslogtreecommitdiffstats
path: root/vendor/anstream/benches/wincon.rs
blob: 54e1f80afc07f7df100c2f8a04f98b97599f72a6 (plain)
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
use criterion::{black_box, Criterion};

fn wincon(c: &mut Criterion) {
    for (name, content) in [
        ("demo.vte", &include_bytes!("../tests/demo.vte")[..]),
        ("rg_help.vte", &include_bytes!("../tests/rg_help.vte")[..]),
        ("rg_linus.vte", &include_bytes!("../tests/rg_linus.vte")[..]),
        (
            "state_changes",
            &b"\x1b]2;X\x1b\\ \x1b[0m \x1bP0@\x1b\\"[..],
        ),
    ] {
        let mut group = c.benchmark_group(name);
        group.bench_function("wincon_bytes", |b| {
            b.iter(|| {
                let mut state = anstream::adapter::WinconBytes::new();
                let stripped = state.extract_next(content).collect::<Vec<_>>();

                black_box(stripped)
            })
        });
    }
}

criterion::criterion_group!(benches, wincon);
criterion::criterion_main!(benches);