(args)
| 7 | |
| 8 | import os |
| 9 | def run_cmd(args): |
| 10 | cmd = args[0] |
| 11 | for i in range(1, len(args)): |
| 12 | cmd += ' ' + args[i] |
| 13 | stdout = os.popen(cmd).read() |
| 14 | global total_num |
| 15 | total_num += 1 |
| 16 | return stdout |
| 17 | |
| 18 | gWrong = [] |
| 19 |
no test coverage detected