X-Git-Url: http://git.nguyen.vg/gitweb/?p=tatoo.git;a=blobdiff_plain;f=src%2Ftest.ml;h=e854f442a29709e19b09677e4a3155854638f570;hp=dec8918dc92cead215150e361dbcc1137a82035a;hb=30bc0bb1291426e5e26eb2dee1ffc41e4c246349;hpb=d9c0e4863807eaf472e875a4bad35cfefe985c95 diff --git a/src/test.ml b/src/test.ml index dec8918..e854f44 100644 --- a/src/test.ml +++ b/src/test.ml @@ -14,7 +14,7 @@ (***********************************************************************) (* - Time-stamp: + Time-stamp: *) (** use: xml_file "XPath querie" @@ -22,26 +22,26 @@ only the first line of XPath_querie_file is read *) -module F = Formula -module A = Ata +module F = Auto.Formula +module A = Auto.Ata (* to force ocaml build to add Formula to the dependency chain even if we don't use it yet*) let doc = let fd = open_in Sys.argv.(1) in - let d = Tree.load_xml_file fd in + let d = Tree.Naive.load_xml_file fd in close_in fd; d let query = let arg2 = Sys.argv.(2) in - XPath.Parser.parse (Ulexing.from_latin1_string arg2) + Xpath.Parser.parse (Ulexing.from_latin1_string arg2) open Format let () = - fprintf err_formatter "Query: %a\n%!" XPath.Ast.print_path query; + fprintf err_formatter "Query: %a\n%!" Xpath.Ast.print_path query; fprintf err_formatter "Document:\n%!"; - Tree.print_xml stderr doc (Tree.root doc); + Tree.Naive.print_xml stderr doc (Tree.Naive.root doc); exit 0