Megatest

Artifact [478041416b]
Login

Artifact 478041416b70a5f37845f4aa8a4728088cd06f1a:

Wiki page [using trace with the megatest executable] by matt on 2014-11-26 15:21:02.
D 2014-11-26T22:21:02.654
L using\strace\swith\sthe\smegatest\sexecutable
P b6cd6ec04c546827c0ce1ab343858b92b8001e99
U matt
W 1066
<h3>Using trace to debug Megatest issues</h3>

NOTE: I have found this method to be very efficient for debugging in general and use it with Megatest and in most of my programs. 

  #  Create ~/.megatestrc
<verbatim>(use trace)
(import trace)
;; list the functions you think might illuminate the problem here
runs:process-expanded-tests
)</verbatim>
  #  Patch trace to emit a little info on where the function was called
<verbatim>
chicken-install -r trace
cd trace
patch -p0 <<EOF
> *** trace.scm 2014-11-26 09:29:50.000000000 -0700
> --- ../../trace/trace.scm 2014-11-25 21:12:41.000000000 -0700
> ***************
> *** 61,66 ****
> --- 61,68 ----
>       (trace-indent)
>       (set! *trace-indent-level* (fx+ 1 *trace-indent-level*))
>       (write (cons name args) port)
> +     (write ", Called from: " port)
> +     (write (conc (car (reverse (get-call-chain)))))
>       (write-char #\newline port)
>       (flush-output port) ) )
> EOF
chicken-install
</verbatim>
  #  Run your megatest runs and dig through the various logs :)
Z 90a1180bfcc56d4dba562dfd35b9fbb8