(f, check_result)
| 18 | |
| 19 | |
| 20 | def getCheckstyleFor(f, check_result): |
| 21 | f = os.path.abspath(f) |
| 22 | check_result = os.path.abspath(check_result) |
| 23 | ret = subprocess.check_output(['xsltproc', '--stringparam', 'target', f, './dev-tools/checkstyle.xslt', check_result]) |
| 24 | if not ret.isspace(): |
| 25 | print(ret) |
| 26 | |
| 27 | |
| 28 | def main(): |