verilog: Disable tests on darwin
This commit is contained in:
parent
5bf5284c21
commit
2a342932d3
1 changed files with 3 additions and 1 deletions
|
@ -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 ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue