(argv)
| 31 | |
| 32 | |
| 33 | def _run(argv): |
| 34 | try: |
| 35 | completed = subprocess.run([tools.TRACEDECAY_BIN, *argv], check=False) |
| 36 | except OSError as exc: |
| 37 | print(f"tracedecay binary not runnable ({tools.TRACEDECAY_BIN}): {exc}") |
| 38 | return 1 |
| 39 | return completed.returncode |
| 40 | |
| 41 | |
| 42 | def tracedecay_command(args): |
no test coverage detected