(runtime_root: &Path)
| 1666 | } |
| 1667 | |
| 1668 | fn host_wasi_root(runtime_root: &Path) -> Result<WasiFsRoot> { |
| 1669 | let root = maybe_trace_filesystem(host_filesystem(runtime_root)?); |
| 1670 | Ok(WasiFsRoot::from_filesystem(wasi_root_with_devices(root)?)) |
| 1671 | } |
| 1672 | |
| 1673 | fn mountfs_overlay_wasi_root( |
| 1674 | paths: &PglitePaths, |
no test coverage detected