From 87cd53b396501dea3269dd34bff29fe1c22241cc Mon Sep 17 00:00:00 2001 From: Edmund Lodewijks Date: Sun, 15 Feb 2026 21:00:28 +0200 Subject: [PATCH] Fix: Unset disabling some tests by default which only need disabling in a clean chroot. --- .SRCINFO | 6 ++++-- PKGBUILD | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 7dc0c3da3ef11..2dc8513445f4f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -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 diff --git a/PKGBUILD b/PKGBUILD index c79ff6ae96b98..255d55f62f8cd 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -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 }