From: Juro Bystricky Date: Fri, 13 Oct 2017 17:45:05 +0000 (-0700) Subject: gawk-ptest: fix a failing test X-Git-Tag: uninative-1.8~1312 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=3e6bbb81d143919e37cea1549220d27df22080fe;p=openembedded-core.git gawk-ptest: fix a failing test This patch changes the result of the "include" test from FAIL to PASS. The test used to fail as the test prerequisite was missing. This was the only test out of 298 that used to fail. Signed-off-by: Juro Bystricky Signed-off-by: Ross Burton --- diff --git a/meta/recipes-extended/gawk/gawk_4.1.4.bb b/meta/recipes-extended/gawk/gawk_4.1.4.bb index 04451f7ff8..995d37d2ad 100644 --- a/meta/recipes-extended/gawk/gawk_4.1.4.bb +++ b/meta/recipes-extended/gawk/gawk_4.1.4.bb @@ -41,7 +41,7 @@ inherit ptest do_install_ptest() { mkdir ${D}${PTEST_PATH}/test - for i in `grep -vE "@|^$|#|Gt-dummy" ${S}/test/Maketests |awk -F: '{print $1}'` Maketests; \ + for i in `grep -vE "@|^$|#|Gt-dummy" ${S}/test/Maketests |awk -F: '{print $1}'` Maketests inclib.awk; \ do cp ${S}/test/$i* ${D}${PTEST_PATH}/test; \ done }