(self)
| 136 | |
| 137 | |
| 138 | def ps_dash_w(self): |
| 139 | not_header = lambda x: x and not x.startswith("UID") |
| 140 | output = self.exec_command("ps -f").split("\n") |
| 141 | return list(filter(not_header, list(re.sub("\s{1,}", " ", x.strip()) for x in output))) |
| 142 | |
| 143 | |
| 144 | def wait_for_server(self): |
no test coverage detected