Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dune fmt #130

Merged
merged 1 commit into from
Jan 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 14 additions & 4 deletions src/cmd_sym.ml
Original file line number Diff line number Diff line change
Expand Up @@ -256,12 +256,22 @@ let cmd profiling debug unsafe optimize workers no_stop_at_failure workspace
let had_failures =
if no_stop_at_failure then
let failures = Seq.fold_left (fun n _ -> succ n) 0 failing in
if failures = 0 then begin Format.pp_std "All OK@\n"; false end
else begin Format.pp_err "Reached %i problems!@\n" failures; true end
if failures = 0 then begin
Format.pp_std "All OK@\n";
false
end
else begin
Format.pp_err "Reached %i problems!@\n" failures;
true
end
else
match failing () with
| Nil -> Format.pp_std "All OK@\n"; false
| Cons (_thread, _) -> Format.pp_err "Reached problem!@\n"; true
| Nil ->
Format.pp_std "All OK@\n";
false
| Cons (_thread, _) ->
Format.pp_err "Reached problem!@\n";
true
in
let time = !Thread.Solver.solver_time in
let count = !Thread.Solver.solver_count in
Expand Down