aflplusplus: don't run unit tests with cmocka
i don't think running the unit tests really adds anything given that we have proper integration tests working, and it just introduces another build dependency and possibility for spurious breakage.
This commit is contained in:
parent
4eb8f4ece3
commit
5f19ec3bc4
|
@ -1,6 +1,6 @@
|
|||
{ stdenv, stdenvNoCC, fetchFromGitHub, callPackage, makeWrapper
|
||||
, clang_9, llvm_9, gcc, which, libcgroup, python, perl, gmp
|
||||
, file, cmocka, wine ? null, fetchpatch
|
||||
, file, wine ? null, fetchpatch
|
||||
}:
|
||||
|
||||
# wine fuzzing is only known to work for win32 binaries, and using a mixture of
|
||||
|
@ -105,7 +105,7 @@ let
|
|||
wrapPythonProgramsIn $out/bin ${python.pkgs.pefile}
|
||||
'';
|
||||
|
||||
installCheckInputs = [ perl file cmocka ];
|
||||
installCheckInputs = [ perl file ];
|
||||
doInstallCheck = true;
|
||||
installCheckPhase = ''
|
||||
# replace references to tools in build directory with references to installed locations
|
||||
|
|
Loading…
Reference in New Issue