Date: Monday, October 10, 2022 @ 17:47:48
Author: dvzrv
Revision: 457533
Run all tests except t-exec in check() instead of skipping them.
Modified:
openssh/trunk/PKGBUILD
----------+
PKGBUILD | 9 ++-------
1 file changed, 2 insertions(+), 7 deletions(-)
Modified: PKGBUILD
===================================================================
--- PKGBUILD 2022-10-10 17:19:51 UTC (rev 457532)
+++ PKGBUILD 2022-10-10 17:47:48 UTC (rev 457533)
@@ -81,13 +81,8 @@
check() {
cd "${pkgname}-${pkgver}"
- # Tests require openssh to be already installed system-wide,
- # also connectivity tests will fail under makechrootpkg since
- # it runs as nobody which has /bin/false as login shell.
-
- if [[ -e /usr/bin/scp && ! -e /.arch-chroot ]]; then
- make tests
- fi
+ # NOTE: make t-exec does not work in our build environment
+ make file-tests interop-tests unit
}
package() {