]> code.ossystems Code Review - openembedded-core.git/commitdiff
gawk-ptest: fix a failing test
authorJuro Bystricky <juro.bystricky@intel.com>
Fri, 13 Oct 2017 17:45:05 +0000 (10:45 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 5 Nov 2017 13:44:57 +0000 (13:44 +0000)
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 <juro.bystricky@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/recipes-extended/gawk/gawk_4.1.4.bb

index 04451f7ff8ec26edd26fd13db6b5e225320ce376..995d37d2adc6cace9395abe802465b1deb2817a6 100644 (file)
@@ -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
 }