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
// Integration test that owns the `INIT_GUARD` for this binary, so it
// can exercise the full `RlgBuilder::init()` body. Each integration
// test file runs in its own process — `OnceLock` resets between
// binaries even though it can't reset within one.
//
// Skipped under MIRI: `init()` spawns the flusher thread and registers
// the log/tracing facades, both of which MIRI cannot meaningfully run.
use init;
use LogFormat;
use LogLevel;