From f9032fec2fb2f459fc16f92950b81168fd1a4660 Mon Sep 17 00:00:00 2001 From: Lars Eggert Date: Mon, 11 Mar 2024 10:48:29 +0200 Subject: [PATCH] fix: Disable generation of criterion HTML graphs Because we pin the benchmark runs to single cores, and criterion hence runs the report generation also on those cores, and based on `top` output it appears as this is parallelized and hence may interfere with the benchmark runs. --- neqo-transport/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neqo-transport/Cargo.toml b/neqo-transport/Cargo.toml index 21cea4a49f..438fce3fbb 100644 --- a/neqo-transport/Cargo.toml +++ b/neqo-transport/Cargo.toml @@ -21,7 +21,7 @@ qlog = { version = "0.12", default-features = false } smallvec = { version = "1.11", default-features = false } [dev-dependencies] -criterion = { version = "0.5", default-features = false, features = ["html_reports"] } +criterion = { version = "0.5", default-features = false } enum-map = { version = "2.7", default-features = false } test-fixture = { path = "../test-fixture" }