From 3d79e8ea242462f8555455318147e662048b306c Mon Sep 17 00:00:00 2001 From: "Darrick J. Wong" Date: Tue, 9 Feb 2021 18:56:42 -0800 Subject: [PATCH] check: don't abort on non-existent excluded groups Don't abort the whole test run if we asked to exclude groups that aren't included in the candidate group list, since we actually /are/ satisfying the user's request. Signed-off-by: Darrick J. Wong Reviewed-by: Brian Foster Signed-off-by: Eryu Guan --- check | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check b/check index e51cbede..6f8db858 100755 --- a/check +++ b/check @@ -243,7 +243,7 @@ _prepare_test_list() list=$(get_group_list $xgroup) if [ -z "$list" ]; then echo "Group \"$xgroup\" is empty or not defined?" - exit 1 + continue fi trim_test_list $list -- 2.39.5