uhd: Disable tests on darwin

This commit is contained in:
Doron Behar 2021-12-23 11:28:32 +02:00
parent 03572bd8d9
commit 44ee31f6c6

View File

@ -107,7 +107,8 @@ stdenv.mkDerivation rec {
++ optionals (enableDpdk) [ dpdk ] ++ optionals (enableDpdk) [ dpdk ]
; ;
doCheck = true; # many tests fails on darwin, according to ofborg
doCheck = !stdenv.isDarwin;
# Build only the host software # Build only the host software
preConfigure = "cd host"; preConfigure = "cd host";