diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2014-08-01 16:11:25 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-06 10:02:39 +0100 |
commit | f8c1c20cc4926072ad4578ca609ed40e3b94ef85 (patch) | |
tree | 4c0ae827f30d4cdb891dd6b472f66c4d38e874d5 | |
parent | 1c44e057c66fe20d491fcb3ae45defe0a300b256 (diff) | |
download | openembedded-core-f8c1c20cc4926072ad4578ca609ed40e3b94ef85.tar.gz openembedded-core-f8c1c20cc4926072ad4578ca609ed40e3b94ef85.tar.bz2 openembedded-core-f8c1c20cc4926072ad4578ca609ed40e3b94ef85.zip |
test-dependencies: don't override failed-recipes.log
* when dependency changes are reported in OUTPUTC/failed-recipes.log
it can be the same as final output file which is later overwritten
because OUTPUTC == OUTPUT_BASE by default
* use similar format for messages as insane_qa check
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-x | scripts/test-dependencies.sh | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/scripts/test-dependencies.sh b/scripts/test-dependencies.sh index 6ebfd3e4d6..ecbb710c6b 100755 --- a/scripts/test-dependencies.sh +++ b/scripts/test-dependencies.sh @@ -209,7 +209,7 @@ compare_deps() { # OUTPUT_MIN=${OUTPUT_BASE}/3_min \ # openembedded-core/scripts/test-dependencies.sh --tmpdir=tmp-eglibc --targets=glib-2.0 --recipes=recipe_list --buildtype=c echo "===== Compare dependencies recorded in \"${OUTPUT_MAX}\" and \"${OUTPUT_MIN}\" =====" - [ -n "${OUTPUTC}" ] || OUTPUTC=${OUTPUT_BASE} + [ -n "${OUTPUTC}" ] || OUTPUTC=${OUTPUT_BASE}/comp mkdir -p ${OUTPUTC} OUTPUT_FILE=${OUTPUTC}/dependency-changes echo "Differences will be stored in ${OUTPUT_FILE}, dot is shown for every 100 of checked packages" @@ -223,9 +223,11 @@ compare_deps() { find ${OUTPUT_MAX}/packages/ -name latest | sed "s#${OUTPUT_MAX}/##g" | while read pkg; do max_pkg=${OUTPUT_MAX}/${pkg} min_pkg=${OUTPUT_MIN}/${pkg} - recipe=`echo "${pkg}" | sed 's#/.*##g'` + # pkg=packages/armv5te-oe-linux-gnueabi/libungif/libungif/latest + recipe=`echo "${pkg}" | sed 's#packages/[^/]*/\([^/]*\)/\([^/]*\)/latest#\1#g'` + package=`echo "${pkg}" | sed 's#packages/[^/]*/\([^/]*\)/\([^/]*\)/latest#\2#g'` if [ ! -f "${min_pkg}" ] ; then - echo "ERROR: ${min_pkg} doesn't exist" | tee -a ${OUTPUT_FILE} + echo "ERROR: ${recipe}: ${package} package isn't created when building with minimal dependencies?" | tee -a ${OUTPUT_FILE} echo ${recipe} >> ${OUTPUTC}/failed-recipes.log continue fi @@ -238,15 +240,15 @@ compare_deps() { fi if [ "${max_deps}" = "${min_deps}" ] ; then # it's annoying long, but at least it's showing some progress, warnings are grepped at the end - echo "NOTE: ${pkg} dependencies weren't changed" >> ${OUTPUT_FILE} + echo "NOTE: ${recipe}: ${package} rdepends weren't changed" >> ${OUTPUT_FILE} else missing_deps= for dep in ${max_deps}; do echo "${min_deps}" | grep -q " ${dep} " || missing_deps="${missing_deps} ${dep}" + echo # to get rid of dots on last line + echo "WARN: ${recipe}: ${package} rdepends on ${dep} but its not a build dependency?" | tee -a ${OUTPUT_FILE} done if [ -n "${missing_deps}" ] ; then - echo # to get rid of dots on last line - echo "WARN: ${pkg} lost dependency on ${missing_deps}" | tee -a ${OUTPUT_FILE} echo ${recipe} >> ${OUTPUTC}/failed-recipes.log fi fi @@ -272,7 +274,7 @@ for TYPE in $buildtype; do esac done -cat ${OUTPUT_BASE}/*/failed-recipes.log | sort -u > ${OUTPUT_BASE}/failed-recipes.log +cat ${OUTPUT_BASE}/*/failed-recipes.log | sort -u >> ${OUTPUT_BASE}/failed-recipes.log if [ "${RESULT}" != "0" ] ; then echo "ERROR: ${RESULT} issues were found in these recipes: `cat ${OUTPUT_BASE}/failed-recipes.log | xargs`" |