Make _require_group yield the correct error message when the requested group is not found. Signed-off-by: Nikolay Borisov <nborisov@xxxxxxxx> --- common/rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/rc b/common/rc index 743df427..87e6ff08 100644 --- a/common/rc +++ b/common/rc @@ -2027,7 +2027,7 @@ _require_group() qa_group=$1 fi _cat_group | grep -q $qa_group - [ "$?" == "0" ] || _notrun "$qa_group user not defined." + [ "$?" == "0" ] || _notrun "$qa_group group not defined." } _filter_user_do() -- 2.12.3 -- To unsubscribe from this list: send the line "unsubscribe fstests" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html