summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/openssl/openssl
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2018-10-19 20:43:17 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-10-20 22:40:16 +0100
commitb75a0a8d825b68b08587e040b60e80ce6b7c1f2d (patch)
tree50094c91a5fb01bd746b650e500d59fe41a22d5d /meta/recipes-connectivity/openssl/openssl
parent2713d9bcc39c712ef34003ce8424416441be558e (diff)
downloadpoky-b75a0a8d825b68b08587e040b60e80ce6b7c1f2d.tar.gz
openssl: fix ptest
Previously the ptest installation was simply a copy of the entire build tree, which is terribly ugly. Instead copy just the pieces we need, symlink to /usr as appropriate, and add missing dependencies. Remove PRIVATE_LIBS as we don't ship copies of the libraries now. Also remember to do 'set -x' in run-ptest, so if the tests fail the runner knows! [ YOCTO #12965 ] [ YOCTO #12967 ] (From OE-Core rev: 7831d2d3a1069b9d3a8d32e41f0a292e1add56ba) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/openssl/openssl')
-rw-r--r--meta/recipes-connectivity/openssl/openssl/run-ptest14
1 files changed, 11 insertions, 3 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl/run-ptest b/meta/recipes-connectivity/openssl/openssl/run-ptest
index 65c6cc7b86..0a620dea74 100644
--- a/meta/recipes-connectivity/openssl/openssl/run-ptest
+++ b/meta/recipes-connectivity/openssl/openssl/run-ptest
@@ -1,4 +1,12 @@
1#!/bin/sh 1#!/bin/sh
2cd test 2
3OPENSSL_ENGINES=../engines BLDTOP=.. SRCTOP=.. perl run_tests.pl 3set -e
4cd .. 4
5# Optional arguments are 'list' to lists all tests, or the test name (base name
6# ie test_evp, not 03_test_evp.t).
7
8export TOP=.
9# OPENSSL_ENGINES is relative from the test binaries
10export OPENSSL_ENGINES=../engines
11
12perl ./test/run_tests.pl $*