From 1f7aaf76f4aa7875f05f4b838a5ec4594a4c35dc Mon Sep 17 00:00:00 2001 From: Jussi Kukkonen Date: Wed, 19 Aug 2015 11:51:04 +0300 Subject: openssh: build regression test binaries ptests were failing and many more were being silently skipped because required binaries were not being built. Build the binaries in regress/ and set SUDO environment variable in run-ptests: after this all tests in regress/ are now run. Continue to skip building binaries in regress/unittests/: unittest runtime is excessive. On a NUC running intel-corei7-64 core-image-sato, new results are: PASS: 55, SKIP: 3, FAIL: 0 [YOCTO #8153] Signed-off-by: Jussi Kukkonen Signed-off-by: Ross Burton --- meta/recipes-connectivity/openssh/openssh/run-ptest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/recipes-connectivity/openssh/openssh/run-ptest') diff --git a/meta/recipes-connectivity/openssh/openssh/run-ptest b/meta/recipes-connectivity/openssh/openssh/run-ptest index 3e725cf282..564c0c8256 100755 --- a/meta/recipes-connectivity/openssh/openssh/run-ptest +++ b/meta/recipes-connectivity/openssh/openssh/run-ptest @@ -3,5 +3,5 @@ export TEST_SHELL=sh cd regress -make -k .OBJDIR=`pwd` .CURDIR=`pwd` tests \ +make -k .OBJDIR=`pwd` .CURDIR=`pwd` SUDO="sudo" tests \ | sed -e 's/^skipped/SKIP: /g' -e 's/^ok /PASS: /g' -e 's/^failed/FAIL: /g' -- cgit 1.2.3-korg