verilog: Disable tests on darwin

This commit is contained in:
Sandro Jäckel
2021-02-12 21:33:52 +01:00
parent 5bf5284c21
commit 2a342932d3

View File

@@ -38,7 +38,9 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
doCheck = true;
# tests try to access /proc/ which does not exist on darwin
# Cannot locate IVL modules : couldn't get command path from OS.
doCheck = !stdenv.isDarwin;
installCheckInputs = [ perl ];