(output)
| 335 | |
| 336 | |
| 337 | def _java_props(output): |
| 338 | props = {} |
| 339 | for line in output.splitlines(): |
| 340 | match = re.match(r"\s*([^=]+?)\s*=\s*(.*)\s*$", line) |
| 341 | if match: |
| 342 | props[match.group(1)] = match.group(2) |
| 343 | return props |
| 344 | |
| 345 | |
| 346 | def _verify_fory_core_mr_jar(): |
no test coverage detected