Merge #132501: knot-dns: disable tests broken on aarch64-darwin
This commit is contained in:
commit
ebcb3fce2b
@ -29,6 +29,12 @@ stdenv.mkDerivation rec {
|
|||||||
./runtime-deps.patch
|
./runtime-deps.patch
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# Disable knotd journal tests on platforms that don't use 4k sysconf(_SC_PAGESIZE).
|
||||||
|
# The journal most likely works fine, but some of the tests currently don't.
|
||||||
|
postPatch = lib.optionalString (doCheck && stdenv.isDarwin && stdenv.isAarch64) ''
|
||||||
|
sed '/^\tknot\/test_journal\>/d' -i tests/Makefile.am
|
||||||
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
gnutls liburcu libidn2 libunistring
|
gnutls liburcu libidn2 libunistring
|
||||||
|
Loading…
x
Reference in New Issue
Block a user