package jenga

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

The representation of the various command line options. Further configuration (not exposed to casual users) is in jenga_options.ml.

module Gc : sig ... end
type t = {
  1. j_number : int;
  2. f_number : int;
  3. d_number : int;
  4. tenacious_concurrency : int option;
  5. stop_on_first_error : bool;
  6. poll_forever : bool;
  7. verbose : bool;
  8. show_memory_allocations : bool;
  9. show_actions_run : bool;
  10. show_actions_run_verbose : bool;
  11. show_checked : bool;
  12. show_reflecting : bool;
  13. show_considering : bool;
  14. show_reconsidering : bool;
  15. show_trace_messages : bool;
  16. show_error_dependency_paths : bool;
  17. prefix_time : bool;
  18. report_long_cycle_times : Core.Time.Span.t option;
  19. progress : bool;
  20. dont_emit_kill_line : bool;
  21. path_to_jenga_conf : string option;
  22. brief_error_summary : bool;
  23. no_server : bool;
  24. goals : string list;
  25. no_notifiers : bool;
  26. no_fs_triggers : bool;
  27. sandbox_actions : Db.Sandbox_kind.t;
  28. gc : Gc.t;
}
val gc : t -> Gc.t
val sandbox_actions : t -> Db.Sandbox_kind.t
val no_fs_triggers : t -> bool
val no_notifiers : t -> bool
val goals : t -> string list
val no_server : t -> bool
val brief_error_summary : t -> bool
val path_to_jenga_conf : t -> string option
val dont_emit_kill_line : t -> bool
val progress : t -> bool
val report_long_cycle_times : t -> Core.Time.Span.t option
val prefix_time : t -> bool
val show_error_dependency_paths : t -> bool
val show_trace_messages : t -> bool
val show_reconsidering : t -> bool
val show_considering : t -> bool
val show_reflecting : t -> bool
val show_checked : t -> bool
val show_actions_run_verbose : t -> bool
val show_actions_run : t -> bool
val show_memory_allocations : t -> bool
val verbose : t -> bool
val poll_forever : t -> bool
val stop_on_first_error : t -> bool
val tenacious_concurrency : t -> int option
val d_number : t -> int
val f_number : t -> int
val j_number : t -> int
module Fields : sig ... end