Lines Matching refs:output
21 def check_df_k(output):
22 result = re.search("cmd is: df -k\n\n([^\n]+\n){4,}", output)
26 def check_lsof(output):
27 result = re.search("cmd is: lsof\n\n([^\n]+\n){4,}", output)
31 def check_iotop(output):
32 result = re.search("cmd is: iotop -n 1 -m 100\n([^\n]+\n){4,}", output)
36 def check_proc_mount(output):
37 result = re.search("/proc/mounts\n\n([^\n]+\n){4,}", output)
40 def CheckStorageWithoutPid(output):
41 ret = all(check(output) for check in [check_df_k, check_lsof, check_iotop, check_proc_mount])
44 def CheckStorageWithPid(output):
45 result = re.search("storage io", output)