(name: &str, path: &Path)
| 7163 | } |
| 7164 | |
| 7165 | fn source_checkout_status_for_source(name: &str, path: &Path) -> Result<String> { |
| 7166 | if name == POSTGRES_PGLITE_SOURCE { |
| 7167 | return command_output( |
| 7168 | "git", |
| 7169 | &["status", "--porcelain", "--ignore-submodules=all"], |
| 7170 | path, |
| 7171 | ); |
| 7172 | } |
| 7173 | source_checkout_status(path) |
| 7174 | } |
| 7175 | |
| 7176 | fn patch_adds_marker(patch_text: &str, marker: &str) -> bool { |
| 7177 | patch_text |
no test coverage detected