Return non-zero when the number of entries from *-find returned is zero.

ticket 325
This commit is contained in:
Rob Crittenden 2010-10-11 12:51:08 -04:00
parent 3d55b66e48
commit 53c218cf2f

View File

@ -896,7 +896,9 @@ class Command(HasParam):
continue
result = output[o]
if o.lower() == 'failed':
if o.lower() == 'count' and result == 0:
rv = 1
elif o.lower() == 'failed':
if self.number_failed(result) == 0:
# Don't display an empty failed list
continue