https://github.com/EasyCrypt/easycrypt
Revision 9f4a2f7c153fe8a1566c8c0ff1bd796083ef587a authored by Pierre-Yves Strub on 03 November 2022, 05:50:59 UTC, committed by Pierre-Yves Strub on 07 November 2022, 20:30:11 UTC
The entry is `file_exclude`. It is a space-separated list of
globs. A file is excluded if its basename matches any of the glob.

See `fnmatch.fnmatch` of the standard Python libraries to get a
description of which glob patterns are supported.

Fix #303
1 parent 8d4e67d
Raw File
Tip revision: 9f4a2f7c153fe8a1566c8c0ff1bd796083ef587a authored by Pierre-Yves Strub on 03 November 2022, 05:50:59 UTC
[ec-runtest]: add the possibility to exclude file based on the name
Tip revision: 9f4a2f7
ecVersion.ml
(* -------------------------------------------------------------------- *)
let copyright = [
  "Copyright (c) 2012 IMDEA Software Institute";
  "Copyright (c) 2012 Inria";
  "Copyright (c) 2017 Ecole Polytechnique";
  "Copyright (c) EasyCrypt contributors (see AUTHORS)";
]

let url  = "https://www.easycrypt.info/"
let app  = "easycrypt"

module License = struct
  let engine = "Distributed under the terms of the MIT license"
  let stdlib = "Distributed under the terms of the MIT license"
end

let hash =
  match Build_info.V1.version () with
  | None   -> "n/a"
  | Some v -> Build_info.V1.Version.to_string v
back to top