1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633
|
(****************************************************************************)
(* the diy toolsuite *)
(* *)
(* Jade Alglave, University College London, UK. *)
(* Luc Maranget, INRIA Paris-Rocquencourt, France. *)
(* *)
(* Copyright 2013-present Institut National de Recherche en Informatique et *)
(* en Automatique and the authors. All rights reserved. *)
(* *)
(* This software is governed by the CeCILL-B license under French law and *)
(* abiding by the rules of distribution of free software. You can use, *)
(* modify and/ or redistribute the software under the terms of the CeCILL-B *)
(* license as circulated by CEA, CNRS and INRIA at the following URL *)
(* "http://www.cecill.info". We also give a copy in LICENSE.txt. *)
(****************************************************************************)
(** Entry point to Herd *)
open Printf
open Archs
open Opts
(* Command line arguments *)
let args = ref []
let get_cmd_arg s = args := s :: !args
(* Helpers *)
open ArgUtils
(* Option list *)
let load_config s =
LexConf_herd.lex
(Opts.libfind !includes !debug.Debug_herd.files s)
let pp_default_model a =
sprintf "%s=%s" (Archs.pp a)
(Model.pp (Model.get_default_model !Opts.variant a))
let gen_model_opt s =
parse_tag
s
(fun tag -> match Model.parse tag with
| None -> false
| Some _ as m -> model := m ; true)
Model.tags
(sprintf " select model, defaults %s, %s, %s, %s, %s, %s, %s"
(pp_default_model x86)
(pp_default_model x86_64)
(pp_default_model ppc)
(pp_default_model arm)
(pp_default_model aarch64)
(pp_default_model riscv)
(pp_default_model Archs.c))
let options = [
(* Basic *)
("-version", Arg.Unit
(fun () -> printf "%s, Rev: %s\n" Version.version Version.rev ; exit 0),
" show version number and exit") ;
("-libdir", Arg.Unit (fun () -> print_endline !Opts.libdir; exit 0),
" show installation directory and exit");
("-set-libdir", Arg.String (fun s -> Opts.libdir := s),
"<path> set installation directory to <path>");
("-v", Arg.Unit (fun _ -> incr verbose),
"<non-default> show various diagnostics, repeat to increase verbosity");
("-q", Arg.Unit (fun _ -> verbose := -1; debug := Debug_herd.none),
"<default> do not show diagnostics");
("-I", Arg.String (fun s -> includes := !includes @ [s]),
"<dir> add <dir> to search path");
parse_bool "-exit" Opts.exit_if_failed "exit in case of failure";
parse_float_opt "-timeout" Opts.timeout "timeout (CPU time)";
("-conf",
Arg.String load_config,
"<name> read configuration file <name>") ;
("-bell",
Arg.String (fun x -> Opts.bell := (Some x)),
"<name> read bell file <name>") ;
("-macros",
Arg.String (fun x -> Opts.macros := (Some x)),
"<name> read macro (.def) file <name>") ;
("-o", Arg.String
(fun s -> match s with
| "-" -> outputdir := PrettyConf.StdoutOutput
| _ -> outputdir := PrettyConf.Outputdir s),
"<dir> generated files will go into <dir>, default: do not generate") ;
("-suffix", Arg.String (fun s -> suffix := s),
"<suf> add <suf> at the end of the base of generated files") ;
parse_bool "-dumpes" Opts.dumpes "dump event structures";
begin let module ParseView = ParseTag.Make(View) in
ParseView.parse_opt "-view" PP.view
"fork specified viewer to show output graphs" end ;
( "-gv",
Arg.Unit (fun _ -> PP.view := Some View.GV),
"<non-default> alias for -view gv") ;
( "-evince",
Arg.Unit (fun _ -> PP.view := Some View.Evince),
"<non-default> alias for -view evince") ;
( "-preview",
Arg.Unit (fun _ -> PP.view := Some View.Preview),
"<non-default> alias for -view preview") ;
("-unroll",
Arg.Int (fun x -> unroll := Some x),
sprintf "<int> branch unrolling upper limit, default ASL: %i, others: %i"
(unroll_default `ASL) (unroll_default `Others));
parse_bool "-hexa" PP.hexa "print numbers in hexadecimal";
(* undocumented *)
("-switch",
Arg.Unit (fun () -> Misc.switch := true),
"switch something") ;
("-web",
Arg.Unit (fun () -> load_config "web.cfg")," alias for -conf web.cfg");
("-c11",
Arg.Unit (fun () -> load_config "cpp11.cfg")," alias for -conf cpp11.cfg");
parse_tags
"-debug"
(fun tag -> match Debug_herd.parse !debug tag with
| None -> false
| Some t -> debug := t ; true)
Debug_herd.tags
"show debug messages for specific parts" ;
parse_bool "-morefences" (ref false) "does nothing (deprecated)" ;
(* Engine control *)
gen_model_opt "-model";
gen_model_opt "-cat";
parse_tag
"-through"
(fun tag -> match Model.parse_through tag with
| None -> false
| Some t -> through := t ; true)
Model.tags_through
(sprintf
"what to let through in addition to valid executions, default %s"
(Model.pp_through !through)) ;
parse_string_opt
"-throughflag"
throughflag
"let through executions flagged with string, and only those" ;
("-skipcheck",
Arg.String (fun tag -> skipchecks := StringSet.add tag !skipchecks),
"<name> do not apply check, cumulates") ;
parse_stringset "-skipchecks" skipchecks "do not apply listed checks, cumulative" ;
parse_bool "-strictskip" strictskip "retain outcomes allowed by ALL skipped checks" ;
parse_stringset "-cycles" cycles "<name1,...,nameN> show failing checks as cycles, cumulates" ;
(* Model control *)
begin
let module ParseVariant = ParseTag.MakeS(Opts.OptS) in
ParseVariant.parse "-variant" variant
"select an architecture variation" end ;
begin let module ParseMachSize = ParseTag.Make(MachSize.Tag) in
ParseMachSize.parse "-machsize" byte "set basic machine size" end ;
begin let module ParseEndian = ParseTag.Make(Endian) in
ParseEndian.parse_opt "-endian" endian "set endianness" end ;
parse_bool "-archcheck" archcheck "check compatibility of test and cat model architectures" ;
parse_tag "-optace"
(fun tag -> match OptAce.parse tag with
| None -> false
| Some t -> optace := Some t ; true)
OptAce.tags
"optimize axiomatic candidate generation, default is iico";
"-initwrites", Arg.Bool (fun b -> initwrites := Some b),
"<bool> represent init writes as write events, this option should not be used except for debugging model options";
parse_tag "-show"
(fun tag -> match PrettyConf.parse_show tag with
| None -> false
| Some t -> show := t ; true)
PrettyConf.tags_show
(sprintf "executions shown in figure, default %s"
(PrettyConf.pp_show !show)) ;
"-showflag",
Arg.String (fun flag -> show := PrettyConf.ShowFlag flag),
"<string> show executions flagged by string in figure" ;
(* Discard some observations *)
parse_tag "-speedcheck"
(fun tag -> match Speed.parse tag with
| None -> false
| Some t -> speedcheck := t ; true)
Speed.tags
"aim at checking condition in place of listing final states" ;
"-nshow",
Arg.Int (fun n -> nshow := Some n),
"<n> collect at most <n> pictures, default is to collect all (specified) pictures";
parse_bool "-badexecs" badexecs "give output for tests that have bad executions (see -badflag)" ;
parse_string_opt "-badflag" badflag "executions with flag <string> are bad" ;
parse_bool "-checkfilter" check_filter "discard outcomes that negate filter proposition (if any)" ;
(* undocumented *)
"-showone",
Arg.Bool (fun b -> if b then nshow := Some 1),
"<bool> alias for -nshow 1";
parse_int_opt
"-maxphantom" maxphantom "maximum phantom update (per variable)";
"-statelessrc11",
Arg.Bool (fun b -> if b then statelessrc11 := true),
"<bool> enable stateless RC11 model checking, use with -variant normw, SC check can be skipped";
"-dumpallfaults",
Arg.Bool (fun b -> dumpallfaults := b),
"Dump final states with all faults that that happenned regardless of the post-condition";
(************************)
(* Control dot pictures *)
(************************)
(* General *)
parse_tag "-graph"
(fun tag -> match Graph.parse tag with
| None -> false
| Some t -> PP.graph := t ; true)
Graph.tags
(sprintf "select sort of graph, default %s" (Graph.pp !PP.graph)) ;
parse_tag "-dotmode"
(fun tag -> match PrettyConf.parse_dotmode tag with
| None -> false
| Some t -> PP.dotmode := t ; true)
PrettyConf.tags_dotmode
(sprintf "control text in dot figures, default %s"
(PrettyConf.pp_dotmode !PP.dotmode)) ;
parse_tag "-dotcom"
(fun tag -> match PrettyConf.parse_dotcom tag with
| None -> false
| Some _ as t -> PP.dotcom := t ; true)
PrettyConf.tags_dotcom
"select command to translate dot, default depends on other modes" ;
parse_tag "-showevents"
(fun tag -> match PrettyConf.parse_showevents tag with
| None -> false
| Some t -> PP.showevents := t ; true)
PrettyConf.tags_showevents
(sprintf "select events shown in figures, default %s"
(PrettyConf.pp_showevents !PP.showevents)) ;
parse_bool "-mono" PP.mono "monochrome figures" ;
parse_float "-scale" PP.scale "global scale factor for graphs" ;
parse_float "-xscale" PP.xscale
"global scale factor for graphs, x direction" ;
parse_float "-yscale" PP.yscale
"global scale factor for graphs, y direction" ;
parse_float "-dsiy" PP.dsiy "vertical variation for events generated by the same instruction" ;
parse_float "-siwidth" PP.siwidth "width occupied by events generated by the same instruction" ;
parse_float "-ptscale" PP.ptscale "scale factor for points" ;
parse_float "-boxscale" PP.ptscale "scale factor box width" ;
parse_bool "-showthread" PP.showthread
"show thread numbers in figures" ;
"-shift",
Arg.String
(fun tag ->
let fs = Misc.split_comma tag in
let fs =
List.map
(fun f ->
try float_of_string f with
| _ ->
raise
(Arg.Bad
(sprintf "bad argument for option -shift: '%s'" tag)))
fs in
PP.shift := Array.of_list fs),
"<float,...,float> add vertical space at thread start (column mode only)";
parse_bool "-edgemerge" PP.edgemerge "merge edges, cppmem style" ;
parse_bool "-labelinit" PP.labelinit "show labels on the init node" ;
(* Legend *)
parse_bool "-showlegend" PP.showlegend "show legend in pictures" ;
parse_bool "-showkind" showkind "show test kind in legends" ;
parse_bool "-shortlegend" shortlegend "show test name only in legends";
(* Nodes *)
parse_bool "-squished" PP.squished "limit information in graph nodes" ;
parse_bool "-fixedsize" PP.fixedsize
"fixedsize attribute for nodes in graph" ;
parse_float "-extrachars" PP.extrachars
"additional space for computing node width, can be negative" ;
parse_bool "-showobserved" PP.showobserved
"highlight observed memory reads in pictures" ;
parse_bool "-brackets" PP.brackets
"show brackets around locations in pictures" ;
parse_bool "-texmacros" PP.texmacros "use latex commands in output";
parse_bool "-tikz" PP.tikz "generate dot files suitable for processing with TikZ";
(* Edge selection *)
parse_bool "-showpo" PP.showpo "show po edges in pictures" ;
parse_bool "-showinitrf" PP.showinitrf
"show read-from edges from initial state in pictures" ;
parse_bool "-showfinalrf" PP.showfinalrf
"show read-from edges to final state in pictures" ;
parse_pos "-initrfpos" PP.initdotpos
"position of pseudo source event for initial rf" ;
parse_pos "-finalrfpos" PP.initdotpos
"position of pseudo target event for final rf" ;
parse_bool "-oneinit" PP.oneinit
"show a init writes pseudo-event, with all initial writes grouped" ;
parse_pos_opt "-initpos" PP.initpos
"position of the init writes pseudo-event" ;
parse_bool "-showinitwrites" PP.showinitwrites
"show init write events in pictures" ;
parse_float "-threadposy" PP.threadposy
"thread number position in the y direction" ;
parse_stringsetfun "-doshow" PP.add_doshow "show those edges";
parse_stringsetfun "-unshow" PP.add_unshow "do not show those edges" ;
parse_stringset "-symetric" PP.symetric "declare those edges as symetric" ;
parse_stringset "-noid" PP.noid "like -symetric, additionally do not show identity edges" ;
parse_string_opt "-classes" PP.classes "show classes of this equivalence (no not cumulate)" ;
parse_stringset "-showraw" PP.showraw
"do not perform transitivity removal on those edges" ;
(* DOT contents control *)
parse_tag "-splines"
(fun tag -> match Splines.parse tag with
| None -> false
| Some Splines.No -> PP.splines := None; true
| Some t -> PP.splines := Some t ; true)
Splines.tags
"specify splines graph attribute, default none" ;
parse_float_opt "-margin" PP.margin "margin attribute of graphs";
parse_float_opt "-pad" PP.pad "pad attribute of graphs";
parse_string_opt "-sep" PP.sep "specify graph sep attribute" ;
parse_string_opt "-fontname" PP.fontname "fontname attribute in graphs" ;
parse_int_opt "-fontsize" PP.fontsize "fontsize attribute in graphs" ;
parse_int "-edgefontsizedelta" PP.edgedelta "value to add to edge fontsize" ;
parse_float_opt "-penwidth" PP.penwidth "penwidth attribute in graphs" ;
parse_float_opt "-arrowsize" PP.arrowsize "arrowsize attribute in graphs" ;
"-edgeattr",
Arg.String
(fun tag -> match Misc.split_comma tag with
| [lbl;a;v;] -> PP.add_edgeattr lbl a v
| _ ->
raise
(Arg.Bad
(sprintf "bad argument for option -edgeattr: '%s'" tag))),
"<label,attribute,value> specify an attribute for edges labelled by label";
(* Select input *)
CheckName.parse_names names ;
CheckName.parse_excl excl ;
(* Change input *)
CheckName.parse_rename rename ;
( "-kinds",
Arg.String (fun s -> kinds := !kinds @ [s]),
"<name> specify kind of tests (can be repeated)");
( "-conds",
Arg.String (fun s -> conds := !conds @ [s]),
"<name> specify conditions of tests (can be repeated)");
(* Undocumented *)
parse_bool "-candidates" candidates
"show complete candidate count in output" ;
parse_tag "-restrict"
(fun tag -> match Restrict.parse tag with
| None -> false
| Some t -> restrict := t ; true)
Restrict.tags
(sprintf "restrict outcomes, default %s" (Restrict.pp !restrict));
parse_bool "-outcomereads" outcomereads "include all memory reads in outcomes" ;
parse_string_opt "-overlap" PP.overlap "specify graph overlap attribute" ;
parse_bool "-relabel" PP.relabel
"merge power/arm labels(e.g sync -> sync/dmb)" ;
parse_bool "-withbox" PP.withbox
"box together events generated by the same instruction" ;
parse_bool "-labelbox" PP.labelbox
"label instruction instruction boxes with instruction" ;
parse_bool "-movelabel" PP.movelabel
"apply various tricks to enhance edge label placement in pictures" ;
("-dotheader",Arg.String (fun s -> PP.dotheader := Some s),
"<name> insert the contents of <name> at the beginning of generated dot files");
]
(* Parse command line *)
let () =
try
Arg.parse options
get_cmd_arg
(sprintf "Usage %s [options] [test]*" prog)
with
| Misc.Fatal msg -> eprintf "%s: %s\n" prog msg ; exit 2
(* Read generic model, if any *)
let libfind = Opts.libfind !includes !debug.Debug_herd.files
module ParserConfig = struct
let debug = !debug.Debug_herd.lexer
let libfind = libfind
end
let model,model_opts = match !model with
| Some (Model.File fname) ->
let module P = ParseModel.Make(ParserConfig) in
begin try
let (fname,((b,_,_) as r)) = P.find_parse fname in
Some (Model.Generic (fname,r)),b
with
| Misc.Fatal msg -> eprintf "%s: %s\n" prog msg ; exit 2
| Misc.Exit ->
eprintf "Failure of generic model parsing\n" ;
exit 2 end
| Some _ as m -> m,ModelOption.compat
| None -> None,ModelOption.default
(* Check names, NB no select argument! *)
module Verbose =
struct let verbose = if !debug.Debug_herd.lexer then !verbose else 0 end
module Check =
CheckName.Make
(struct
include Verbose
let rename = !rename
let select = []
let names = !names
let excl = !excl
end)
(* Read kinds/conds files *)
module LR = LexRename.Make(Verbose)
let kinds = LR.read_from_files !kinds ConstrGen.parse_kind
let conds = LR.read_from_files !conds (fun s -> Some s)
(* Configure parser/models/etc. *)
let () =
let module Config = struct
let timeout = !timeout
let candidates = !candidates
let nshow = !nshow
let restrict = !restrict
let showkind = !showkind
let shortlegend = !shortlegend
let model = model
let archcheck = !archcheck
let through = !through
let skipchecks = !skipchecks
let strictskip = !strictskip
let cycles = !cycles
let outcomereads = !outcomereads
let show = !show
let badexecs = !badexecs
let badflag = !badflag
let throughflag = !throughflag
let maxphantom = !maxphantom
let statelessrc11 = !statelessrc11
let dumpallfaults = !dumpallfaults
let check_name = Check.ok
let check_rename = Check.rename_opt
let check_kind = TblRename.find_value_opt kinds
let check_cond = TblRename.find_value_opt conds
let libfind = libfind
let macros = !macros
let model_enumco = model_opts.ModelOption.co
let observed_finals_only = not model_enumco
let initwrites = match !initwrites with
| None -> model_opts.ModelOption.init
| Some b -> b
let check_filter = !check_filter
let debug = !debug
let debuglexer = debug.Debug_herd.lexer
let verbose = !verbose
let unroll = !unroll
let speedcheck = !speedcheck
let optace = match !optace with
| Some b -> b
| None -> match model with
| Some (Model.Generic _|Model.File _)|None -> OptAce.Iico
| Some (Model.CAV12 _) -> OptAce.False
let variant = !variant
let fault_handling = !Refs.fault_handling
let mte_precision = !Refs.mte_precision
let sve_vector_length = !Refs.sve_vector_length
let sme_vector_length = !Refs.sme_vector_length
let byte = !byte
let endian = !endian
let outputdir = !outputdir
let suffix = !suffix
let dumpes = !dumpes
module PC = struct
let debug = debug.Debug_herd.pretty
let verbose = verbose
let dotmode = !PP.dotmode
let dotcom = !PP.dotcom
let view = !PP.view
let showevents = !PP.showevents
let texmacros = !PP.texmacros
let tikz = !PP.tikz
let hexa = !PP.hexa
let mono = !PP.mono
let fontname = !PP.fontname
let fontsize = !PP.fontsize
let edgedelta = !PP.edgedelta
let penwidth = !PP.penwidth
let arrowsize = !PP.arrowsize
let splines = !PP.splines
let overlap = !PP.overlap
let sep = !PP.sep
let margin = !PP.margin
let pad = !PP.pad
let scale = !PP.scale
let xscale = !PP.xscale
let yscale = !PP.yscale
let dsiy = !PP.dsiy
let siwidth = !PP.siwidth
let boxscale = !PP.boxscale
let ptscale = !PP.ptscale
let squished = !PP.squished
let graph = !PP.graph
let showpo = !PP.showpo
let relabel = !PP.relabel
let withbox = !PP.withbox
let labelbox = !PP.labelbox
let showthread = !PP.showthread
let showlegend = !PP.showlegend
let showfinalrf = !PP.showfinalrf
let showinitrf = !PP.showinitrf
let finaldotpos = !PP.finaldotpos
let initdotpos = !PP.initdotpos
let oneinit = !PP.oneinit
let initpos = !PP.initpos
let threadposy = !PP.threadposy
let showinitwrites = !PP.showinitwrites
let brackets = !PP.brackets
let showobserved = !PP.showobserved
let movelabel = !PP.movelabel
let fixedsize = !PP.fixedsize
let extrachars = !PP.extrachars
let edgeattrs = PP.get_edgeattrs ()
let doshow = !PP.doshow
let unshow = !PP.unshow
let noid = !PP.noid
let symetric = !PP.symetric
let classes = !PP.classes
let showraw = !PP.showraw
let dotheader = match !PP.dotheader with
| None -> None
| Some f ->
let fname = libfind f in
try
Misc.input_protect
(fun chan ->
let xs =
MySys.read_by_line chan (fun x xs -> x::xs) [] in
Some (String.concat "\n" (List.rev xs)))
fname
with Sys_error msg ->
eprintf "Cannot read %s: %s\n" f msg ;
exit 2
let shift = !PP.shift
let edgemerge = !PP.edgemerge
let labelinit = !PP.labelinit
let variant = variant
end
end in
let bi = match !Opts.bell with
| None -> None
| Some fname ->
let module R =
ReadBell.Make
(struct
let debug_lexer = Config.debug.Debug_herd.lexer
let debug_model = Config.debug.Debug_herd.barrier
let debug_files = Config.debug.Debug_herd.files
let verbose = Config.verbose
let libfind = libfind
let compat = Config.variant Variant.BackCompat
let prog = prog
let variant = Misc.delay_parse Config.variant Variant.parse
end) in
let bi = R.read fname in
Some (fname,bi) in
let from_file f =
let module T =
ParseTest.Top
(struct
let bell_model_info = bi
include Config end) in
SymbValue.reset_gensym () ;
T.from_file f in
(* Just go *)
let tests = !args in
let check_exit =
let b = !Opts.exit_if_failed in
fun seen -> if b then exit 1 else seen in
let check_pos0 s =
String.length s > 5 &&
begin match s.[0],s.[1],s.[2],s.[3],s.[4] with
| 'F','i','l','e',' ' -> true
| _ -> false
end in
let dbg_exc = !Opts.debug.Debug_herd.exc in
let _seen =
(* If interval timer enabled and triggered,
then stop test with not output at all *)
Itimer.set_signal
Config.timeout
(fun _ -> raise Misc.Timeout)
!debug.Debug_herd.timeout;
Misc.fold_argv_or_stdin
(fun name seen ->
try from_file name seen
with
| Misc.Timeout -> seen
| Misc.Exit as e ->
if dbg_exc then raise e ;
check_exit seen
| Misc.Fatal msg as e ->
if dbg_exc then raise e ;
Warn.warn_always "%a: %s" Pos.pp_pos0 name msg ;
check_exit seen
| Misc.UserError msg as e ->
if dbg_exc then raise e ;
begin if check_pos0 msg then
Warn.warn_always "%s (User error)" msg
else
Warn.warn_always "%a: %s (User error)" Pos.pp_pos0 name msg
end ;
check_exit seen
| Asllib.Error.ASLException e as exc ->
if dbg_exc then raise exc ;
Warn.warn_always "%s" (Asllib.Error.error_to_string e);
check_exit seen
| e ->
Printf.eprintf "\nFatal: %a Adios\n" Pos.pp_pos0 name ;
raise e)
tests StringMap.empty in
exit 0
|