caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* [Caml-list] bisect-report and including directories
@ 2016-03-11  7:33 Alan Schmitt
  2016-03-11  7:53 ` Vincent Jacques
  0 siblings, 1 reply; 4+ messages in thread
From: Alan Schmitt @ 2016-03-11  7:33 UTC (permalink / raw)
  To: OCaml Mailing List

[-- Attachment #1: Type: text/plain, Size: 719 bytes --]

Hello,

After moving things around in a project, I'm having trouble generating
bisect reports. This works (in the "interp" directory):

  % bisect-report -I _build -html ../report ../bisect*.out

but this does not work (in the directory above):

  % bisect-report -I interp/_build -html report bisect*.out
  *** system error: src/extract/JsInterpreterBisect.ml: No such file or directory

The file is there though:

  % ls interp/_build/src/extract/JsInterpreterBisect.ml
  interp/_build/src/extract/JsInterpreterBisect.ml

Have other bisect users encountered this issue?

Thanks a lot,

Alan

-- 
Openpgp Key ID : 040D0A3B4ED2E5C7
Monthly Athmospheric CO₂ (2016-02, Mauna Loa Obs.): 404.02

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 472 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Caml-list] bisect-report and including directories
  2016-03-11  7:33 [Caml-list] bisect-report and including directories Alan Schmitt
@ 2016-03-11  7:53 ` Vincent Jacques
  2016-03-11 16:27   ` Anton Bachin
  0 siblings, 1 reply; 4+ messages in thread
From: Vincent Jacques @ 2016-03-11  7:53 UTC (permalink / raw)
  To: Alan Schmitt; +Cc: OCaml Mailing List

[-- Attachment #1: Type: text/plain, Size: 1216 bytes --]

I think I've had exactly the same problem.

IIRC it was specific to html reports: other formats worked.

My work-around was to run bisect-report in a dedicated, temporary,
directory where I copied all the sources.

2016-03-11 8:33 GMT+01:00 Alan Schmitt <alan.schmitt@polytechnique.org>:

> Hello,
>
> After moving things around in a project, I'm having trouble generating
> bisect reports. This works (in the "interp" directory):
>
>   % bisect-report -I _build -html ../report ../bisect*.out
>
> but this does not work (in the directory above):
>
>   % bisect-report -I interp/_build -html report bisect*.out
>   *** system error: src/extract/JsInterpreterBisect.ml: No such file or
> directory
>
> The file is there though:
>
>   % ls interp/_build/src/extract/JsInterpreterBisect.ml
>   interp/_build/src/extract/JsInterpreterBisect.ml
>
> Have other bisect users encountered this issue?
>
> Thanks a lot,
>
> Alan
>
> --
> Openpgp Key ID : 040D0A3B4ED2E5C7
> Monthly Athmospheric CO₂ (2016-02, Mauna Loa Obs.): 404.02
>



-- 
Vincent Jacques
http://vincent-jacques.net

"S'il n'y a pas de solution, c'est qu'il n'y a pas de problème"
            Devise Shadock

[-- Attachment #2: Type: text/html, Size: 1827 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Caml-list] bisect-report and including directories
  2016-03-11  7:53 ` Vincent Jacques
@ 2016-03-11 16:27   ` Anton Bachin
  2016-03-14  7:25     ` Alan Schmitt
  0 siblings, 1 reply; 4+ messages in thread
From: Anton Bachin @ 2016-03-11 16:27 UTC (permalink / raw)
  To: Vincent Jacques; +Cc: Alan Schmitt, OCaml Mailing List

[-- Attachment #1: Type: text/plain, Size: 1686 bytes --]

Alan,

This doesn’t appear to be a problem in bisect-ppx-report. Since the
.out file format is unchanged from Bisect to Bisect_ppx, perhaps you
could install Bisect_ppx for the report tool, and try using that.

I would be curious to know if it helps.

Best,
Anton

> On Mar 11, 2016, at 01:53, Vincent Jacques <vincent@vincent-jacques.net> wrote:
> 
> I think I've had exactly the same problem.
> 
> IIRC it was specific to html reports: other formats worked.
> 
> My work-around was to run bisect-report in a dedicated, temporary, directory where I copied all the sources.
> 
> 2016-03-11 8:33 GMT+01:00 Alan Schmitt <alan.schmitt@polytechnique.org <mailto:alan.schmitt@polytechnique.org>>:
> Hello,
> 
> After moving things around in a project, I'm having trouble generating
> bisect reports. This works (in the "interp" directory):
> 
>   % bisect-report -I _build -html ../report ../bisect*.out
> 
> but this does not work (in the directory above):
> 
>   % bisect-report -I interp/_build -html report bisect*.out
>   *** system error: src/extract/JsInterpreterBisect.ml: No such file or directory
> 
> The file is there though:
> 
>   % ls interp/_build/src/extract/JsInterpreterBisect.ml
>   interp/_build/src/extract/JsInterpreterBisect.ml
> 
> Have other bisect users encountered this issue?
> 
> Thanks a lot,
> 
> Alan
> 
> --
> Openpgp Key ID : 040D0A3B4ED2E5C7
> Monthly Athmospheric CO₂ (2016-02, Mauna Loa Obs.): 404.02
> 
> 
> 
> -- 
> Vincent Jacques
> http://vincent-jacques.net <http://vincent-jacques.net/>
> 
> "S'il n'y a pas de solution, c'est qu'il n'y a pas de problème"
>             Devise Shadock


[-- Attachment #2: Type: text/html, Size: 3276 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Caml-list] bisect-report and including directories
  2016-03-11 16:27   ` Anton Bachin
@ 2016-03-14  7:25     ` Alan Schmitt
  0 siblings, 0 replies; 4+ messages in thread
From: Alan Schmitt @ 2016-03-14  7:25 UTC (permalink / raw)
  To: Anton Bachin; +Cc: Vincent Jacques, OCaml Mailing List

[-- Attachment #1: Type: text/plain, Size: 534 bytes --]

On 2016-03-11 17:27, Anton Bachin <antronbachin@gmail.com> writes:

> Alan,
>
> This doesn’t appear to be a problem in bisect-ppx-report. Since the
> .out file format is unchanged from Bisect to Bisect_ppx, perhaps you
> could install Bisect_ppx for the report tool, and try using that.

Thank you for the suggestion, but as the workaround is fairly simple, I
think I'll keep using it for the moment.

Best,

Alan

-- 
OpenPGP Key ID : 040D0A3B4ED2E5C7
Monthly Athmospheric CO₂ (2016-02, Mauna Loa Obs.): 404.02

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 472 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-03-14  7:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-03-11  7:33 [Caml-list] bisect-report and including directories Alan Schmitt
2016-03-11  7:53 ` Vincent Jacques
2016-03-11 16:27   ` Anton Bachin
2016-03-14  7:25     ` Alan Schmitt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).