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
//! Integration tests for relay correlation ID handling.
//!
//! These tests require KVM (or libkrun on macOS). The `#[msb_test]`
//! attribute marks them `#[ignore]`, so plain `cargo test --workspace`
//! skips them. Run them via:
//!
//! cargo nextest run -p microsandbox --test correlation_ids --run-ignored=only
use Duration;
use Sandbox;
use msb_test;
/// `core.shutdown` is a process-level control frame sent with correlation ID
/// 0, not a client-owned request/session ID. The relay must allow it even
/// though normal client frames are restricted to the assigned ID range.
async