Skip to content

Commit 94a1739

Browse files
committed
chore(divan): temporarily disable instrumentation mode with divan
1 parent 1e885ff commit 94a1739

File tree

1 file changed

+5
-0
lines changed
  • crates/divan_compat/src/compat

1 file changed

+5
-0
lines changed

crates/divan_compat/src/compat/mod.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ mod entry;
99
pub fn main() {
1010
// 1. Get registered entries
1111
// TODO: Manage bench groups
12+
13+
// TODO: remove when releasing divan with instrumentation mode
14+
todo!("Instrumentation mode with divan is not yet available.");
15+
#[allow(unreachable_code)]
1216
let bench_entries = &entry::BENCH_ENTRIES;
1317

1418
// 2. Build an execution tree
@@ -19,6 +23,7 @@ pub fn main() {
1923

2024
// 4. Scan the tree and execute benchmarks
2125
// TODO:
26+
2227
for entry in bench_entries.iter() {
2328
match entry.bench {
2429
entry::BenchEntryRunner::Plain(bench_fn) => {

0 commit comments

Comments
 (0)