From 5880217b769e0390076d818152e378d00e59b47b Mon Sep 17 00:00:00 2001 From: tro Date: Mon, 26 Feb 2024 15:53:15 +0100 Subject: [PATCH] meta-aws-tests.sh: disable test of aws-cli-v2 https://github.com/aws4embeddedlinux/meta-aws/issues/7265 --- meta-aws-tests/meta-aws-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-aws-tests/meta-aws-tests.sh b/meta-aws-tests/meta-aws-tests.sh index 15a79bf..ba82faf 100755 --- a/meta-aws-tests/meta-aws-tests.sh +++ b/meta-aws-tests/meta-aws-tests.sh @@ -148,7 +148,7 @@ for RELEASE in $RELEASES ; do ALL_RECIPES=${PACKAGE-`find ../meta-aws -name *.bb -type f | sed 's!.*/!!' | sed 's!.bb!!' | sed 's!_.*!!' | sort | uniq | sed -z 's/\n/ /g'`} # those tests are known to not work with others etc. - THINGS_TO_EXCLUDE="-name aws-cli_*" + THINGS_TO_EXCLUDE="-name aws-cli-v2" # 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'`}