diff --git a/tests/test_raid.py b/tests/test_raid.py index 732841b460d9423e28703cf8ea0cc9f757bea88b..2fbb45e053f2b4d54e3cb60d2ef30bc0fe0de422 100755 --- a/tests/test_raid.py +++ b/tests/test_raid.py @@ -23,7 +23,9 @@ def print_green(string): def check_raid(dev): cmd = 'mdadm -D %s' % dev status, output = subprocess.getstatusoutput(cmd) - return status == 0 + ok = status == 0 + print('%s status: %s' % (dev, ok)) + return ok if os.path.isfile('/proc/mdstat'): all_ok = True