caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* Testing Camlp4-generated code
@ 2005-11-05 22:33 Matt Gushee
  2005-11-06 22:10 ` [Caml-list] " Martin Jambon
  2005-11-07  9:10 ` Hendrik Tews
  0 siblings, 2 replies; 4+ messages in thread
From: Matt Gushee @ 2005-11-05 22:33 UTC (permalink / raw)
  To: caml-list

I have developed a tool that generates a module using Camlp4, and I
would like to be able to test the output. The structure is fairly small
and simple, so it should be sufficient to verify that a generated module
is equivalent to a certain hand-coded module ... but is there a reliable
way to do that?

If it makes a difference, the output consists mainly of two values: a
data structure which is of an abstract type, and an object. The former
is implemented as follows:

   type data = S of string | L of string list | D of t
   and t = {
     data : (string, data) Hashtbl.t;
     mutable locked : bool;
   }

and the latter is an immediate object, but it inherits from a class
defined in another module. The object is associated with two instances
of the above type, has public methods that get and set values, and may
contain one or more sub-objects similar to itself.

Thanks in advance for any suggestions.

-- 
Matt Gushee
Englewood, CO, USA


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

end of thread, other threads:[~2005-11-07  9:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-11-05 22:33 Testing Camlp4-generated code Matt Gushee
2005-11-06 22:10 ` [Caml-list] " Martin Jambon
2005-11-06 22:16   ` Martin Jambon
2005-11-07  9:10 ` Hendrik Tews

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).