1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
Perf-sensitive unit tests and benches are skipped by default to avoid host variance. Enable explicitly with both a feature flag and an environment variable:
```bash
PERF_TESTS=1 cargo test -F perf-tests -- --ignored
PERF_TESTS=1 cargo bench -F perf-tests
```
Notes:
- -
Quick link: See “How to run perf benchmarks (Criterion)” → [docs/BENCHMARK.md#how-to-run-perf-benchmarks](./BENCHMARK.md#how-to-run-perf-benchmarks)