X-Git-Url: http://git.nguyen.vg/gitweb/?a=blobdiff_plain;f=src%2Ftest.ml;h=2dd1caee3d6e1ee1c1d445f9664c7508981b36d9;hb=f93c0057cfca9610e40f9214b286174a041e422a;hp=e854f442a29709e19b09677e4a3155854638f570;hpb=30bc0bb1291426e5e26eb2dee1ffc41e4c246349;p=tatoo.git diff --git a/src/test.ml b/src/test.ml index e854f44..2dd1cae 100644 --- a/src/test.ml +++ b/src/test.ml @@ -14,7 +14,7 @@ (***********************************************************************) (* - Time-stamp: + Time-stamp: *) (** use: xml_file "XPath querie" @@ -24,6 +24,8 @@ module F = Auto.Formula module A = Auto.Ata +module X = Xpath.Compile + (* to force ocaml build to add Formula to the dependency chain even if we don't use it yet*) @@ -37,10 +39,14 @@ let query = let arg2 = Sys.argv.(2) in Xpath.Parser.parse (Ulexing.from_latin1_string arg2) +let auto = + Xpath.Compile.path query + open Format let () = fprintf err_formatter "Query: %a\n%!" Xpath.Ast.print_path query; + fprintf err_formatter "Automata: %a\n%!" Auto.Ata.print auto; fprintf err_formatter "Document:\n%!"; Tree.Naive.print_xml stderr doc (Tree.Naive.root doc); exit 0