(args)
| 40 | |
| 41 | message = "" |
| 42 | def run_cmd(args): |
| 43 | cmd = args[0] |
| 44 | for i in range(1, len(args)): |
| 45 | cmd += ' ' + args[i] |
| 46 | print(cmd) |
| 47 | stdout = os.popen(cmd).read() |
| 48 | global total_num |
| 49 | total_num += 1 |
| 50 | return stdout |
| 51 | |
| 52 | for name in os.listdir(root_dir): |
| 53 | if name == '.DS_Store': |
no test coverage detected