diff --git a/tvix/glue/benches/eval.rs b/tvix/glue/benches/eval.rs index 3468fa4e4..8958d9448 100644 --- a/tvix/glue/benches/eval.rs +++ b/tvix/glue/benches/eval.rs @@ -71,6 +71,12 @@ fn eval_nixpkgs(c: &mut Criterion) { interpret(black_box("(import {}).hello.outPath")); }) }); + + c.bench_function("firefox outpath", |b| { + b.iter(|| { + interpret(black_box("(import {}).firefox.outPath")); + }) + }); } criterion_group!(