about summary refs log tree commit diff
path: root/tvix/glue/benches/eval.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/glue/benches/eval.rs')
-rw-r--r--tvix/glue/benches/eval.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/tvix/glue/benches/eval.rs b/tvix/glue/benches/eval.rs
index 3468fa4e431e..8958d9448573 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 <nixpkgs> {}).hello.outPath"));
         })
     });
+
+    c.bench_function("firefox outpath", |b| {
+        b.iter(|| {
+            interpret(black_box("(import <nixpkgs> {}).firefox.outPath"));
+        })
+    });
 }
 
 criterion_group!(