Hotfix for CI

This commit is contained in:
Denis Merigoux 2022-12-06 18:11:40 +01:00
parent 07edff2cd2
commit e9fd40dddd
No known key found for this signature in database
GPG Key ID: EE99DCFA365C3EE3

View File

@ -18,7 +18,8 @@
without the expected backend. All functions print an error message and exit *)
let dummy () =
Cli.error_print "This instance of Catala was compiled without Z3 support.";
Catala_utils.Cli.error_print
"This instance of Catala was compiled without Z3 support.";
exit 124
module Io = struct
@ -35,7 +36,6 @@ module Io = struct
type model = unit
type vc_encoding_result = Success of model * model | Fail of string
let print_positive_result _ = dummy ()
let print_negative_result _ _ _ = dummy ()
let encode_and_check_vc _ _ = dummy ()
end