From b070f67da4d48caf81c5c8c2e224cad64796d034 Mon Sep 17 00:00:00 2001 From: tro Date: Fri, 19 Jul 2024 14:50:07 +0200 Subject: [PATCH] meta-aws-tests.sh: disable aws-lc tests --- meta-aws-tests/meta-aws-tests.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta-aws-tests/meta-aws-tests.sh b/meta-aws-tests/meta-aws-tests.sh index 7311ccf..0a8b3e6 100755 --- a/meta-aws-tests/meta-aws-tests.sh +++ b/meta-aws-tests/meta-aws-tests.sh @@ -145,13 +145,13 @@ for RELEASE in $RELEASES ; do setup_config # those tests are known to not work with others etc. - THINGS_TO_EXCLUDE="-name aws-cli-v2*" + THINGS_TO_EXCLUDE="! -name aws-cli-v2* ! -name aws-lc*" # find all recipes in meta-aws or use package - ALL_RECIPES=${PACKAGE-`find ../meta-aws -name *.bb -type f ! \( ${THINGS_TO_EXCLUDE} \) | sed 's!.*/!!' | sed 's!.bb!!' | sed 's!_.*!!' | sort | uniq | sed -z 's/\n/ /g'`} + ALL_RECIPES=${PACKAGE-`find ../meta-aws -name *.bb -type f \( ${THINGS_TO_EXCLUDE} \) | sed 's!.*/!!' | sed 's!.bb!!' | sed 's!_.*!!' | sort | uniq | sed -z 's/\n/ /g'`} # find all recipes having a ptest in meta-aws - ptest_recipes=${PACKAGE-`find ../meta-aws -name *.bb -type f ! \( ${THINGS_TO_EXCLUDE} \) -print | xargs grep -l 'inherit.*ptest.*'| sed 's!.*/!!' | sed 's!.bb!!' | sed 's!_.*!!' | sort | uniq | sed -z 's/\n/ /g'`} + ptest_recipes=${PACKAGE-`find ../meta-aws -name *.bb -type f \( ${THINGS_TO_EXCLUDE} \) -print | xargs grep -l 'inherit.*ptest.*'| sed 's!.*/!!' | sed 's!.bb!!' | sed 's!_.*!!' | sort | uniq | sed -z 's/\n/ /g'`} # make array out of string ptest_recipes_array=($(echo "$ptest_recipes" | tr ',' '\n'))