From: Richard Purdie Date: Wed, 27 Feb 2019 00:29:46 +0000 (+0000) Subject: openssl: Fix ptest test output translation X-Git-Tag: uninative-2.4~183 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=a4565d62297af62ff86a83685f8d55194cd4db48;p=openembedded-core.git openssl: Fix ptest test output translation openssl-ptest was recording now results, despite most tests passing. Fix so that the successes/skips/failures are reported correctly. Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-connectivity/openssl/openssl/run-ptest b/meta/recipes-connectivity/openssl/openssl/run-ptest index 0a620dea74..3fb22471f8 100644 --- a/meta/recipes-connectivity/openssl/openssl/run-ptest +++ b/meta/recipes-connectivity/openssl/openssl/run-ptest @@ -9,4 +9,4 @@ export TOP=. # OPENSSL_ENGINES is relative from the test binaries export OPENSSL_ENGINES=../engines -perl ./test/run_tests.pl $* +perl ./test/run_tests.pl $* | perl -0pe 's#(.*) \.*.ok#PASS: \1#g; s#(.*) \.*.skipped: (.*)#SKIP: \1 (\2)#g; s#(.*) \.*.\nDubious#FAIL: \1#;'