diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-02-27 00:29:46 +0000 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2019-04-13 11:45:31 -0700 |
commit | 87728d921cfa5997b454ebc5074d2c1aee2def89 (patch) | |
tree | 06672ebc748f8ec075fa089845066ddb6667b249 | |
parent | dc2238b268d48b4e62a795a4f6b257efc298e2b2 (diff) | |
download | openembedded-core-87728d921cfa5997b454ebc5074d2c1aee2def89.tar.gz openembedded-core-87728d921cfa5997b454ebc5074d2c1aee2def89.tar.bz2 openembedded-core-87728d921cfa5997b454ebc5074d2c1aee2def89.zip |
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 <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta/recipes-connectivity/openssl/openssl/run-ptest | 2 |
1 files changed, 1 insertions, 1 deletions
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#;' |