verilog: Disable tests on darwin

master
Sandro Jäckel 2021-02-12 21:33:52 +01:00
parent 5bf5284c21
commit 2a342932d3
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 3 additions and 1 deletions

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 ];