(patch_text: &str, marker: &str)
| 7174 | } |
| 7175 | |
| 7176 | fn patch_adds_marker(patch_text: &str, marker: &str) -> bool { |
| 7177 | patch_text |
| 7178 | .lines() |
| 7179 | .any(|line| line.starts_with('+') && !line.starts_with("+++") && line.contains(marker)) |
| 7180 | } |
| 7181 | |
| 7182 | #[cfg(unix)] |
| 7183 | fn check_wasix_bridge_abi_harness() -> Result<()> { |
no outgoing calls
no test coverage detected