Fix: Unset disabling some tests by default which only need disabling in a clean chroot.

This commit is contained in:
Edmund Lodewijks 2026-02-15 21:00:28 +02:00
parent b452454553
commit 87cd53b396
No known key found for this signature in database
GPG key ID: 5D0AC5211E8D1C4C
2 changed files with 6 additions and 4 deletions

View file

@ -1,7 +1,7 @@
pkgbase = aws-lc
pkgdesc = general-purpose cryptographic library maintained by the AWS Cryptography team for AWS
pkgver = 1.67.0
pkgrel = 1
pkgrel = 3
url = https://github.com/aws/aws-lc
arch = x86_64
license = MIT
@ -17,7 +17,9 @@ pkgbase = aws-lc
depends = bash
depends = gcc-libs
optdepends = libunwind: For extra tests
optdepends = clang: Alternative for gcc (gcc preferred by upstream)
optdepends = clang: alternative C/C++ compiler
optdepends = llvm: LLVM toolchain utilities (ar, ranlib, etc.) for use with clang
options = !strip
source = aws-lc-1.67.0.tar.gz::https://github.com/aws/aws-lc/archive/refs/tags/v1.67.0.tar.gz
b2sums = 2fc94dca5ff6bd2bd387035270bd65674621bc62b4d33522134c881aa81e59131eeb99f3d3e9a72e74e3bbb03770e5c5f425ec28007b58fd28ecc6219693f60f

View file

@ -10,7 +10,7 @@
pkgname=aws-lc
pkgver=1.67.0
pkgrel=2
pkgrel=3
pkgdesc='general-purpose cryptographic library maintained by the AWS Cryptography team for AWS'
url='https://github.com/aws/aws-lc'
license=('MIT' 'ISC' 'Apache-2.0' 'OpenSSL')
@ -87,7 +87,7 @@ check() {
#_set_clang_toolchain
# ONLY FOR CLEAN-CHROOT: Skip OCSP integration tests - require external network connectivity
export GTEST_FILTER='-All/OCSPIntegrationTest.*'
#export GTEST_FILTER='-All/OCSPIntegrationTest.*'
ninja -C build -j $(nproc) run_tests
}