We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e885ff commit 94a1739Copy full SHA for 94a1739
crates/divan_compat/src/compat/mod.rs
@@ -9,6 +9,10 @@ mod entry;
9
pub fn main() {
10
// 1. Get registered entries
11
// 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)]
16
let bench_entries = &entry::BENCH_ENTRIES;
17
18
// 2. Build an execution tree
@@ -19,6 +23,7 @@ pub fn main() {
19
23
20
24
// 4. Scan the tree and execute benchmarks
21
25
// TODO:
26
22
27
for entry in bench_entries.iter() {
28
match entry.bench {
29
entry::BenchEntryRunner::Plain(bench_fn) => {
0 commit comments