ocamlPackages.mirage-channel: fix tests with alcotest 1.4.0

This commit is contained in:
Vincent Laporte 2021-07-06 21:50:50 +02:00 committed by Vincent Laporte
parent 07e185c5a8
commit 9b064d75d0

View file

@ -14,6 +14,11 @@ buildDunePackage rec {
sha256 = "0wmb2zhiyp8n78xgcspcsyd19bhcml3kyli2caw3778wc1gyvfpc";
};
# Make tests compatible with alcotest 1.4.0
postPatch = ''
substituteInPlace test/test_channel.ml --replace 'Fmt.kstrf Alcotest.fail' 'Fmt.kstrf (fun s -> Alcotest.fail s)'
'';
propagatedBuildInputs = [ cstruct logs lwt mirage-flow ];
doCheck = true;