()
| 6720 | |
| 6721 | #[test] |
| 6722 | fn tap_device_name_fits_ifnamsiz() { |
| 6723 | let name = tap_device_name("sandbox-abc-def-ghi"); |
| 6724 | assert!(name.len() <= 15); |
| 6725 | assert!(name.starts_with("vmtap-")); |
| 6726 | } |
| 6727 | |
| 6728 | #[test] |
| 6729 | fn mac_address_is_locally_administered() { |
nothing calls this directly
no test coverage detected