Fix the printing of attributes.
[tatoo.git] / src / test.ml
index e854f44..2dd1cae 100644 (file)
@@ -14,7 +14,7 @@
 (***********************************************************************)
 
 (*
-  Time-stamp: <Last modified on 2013-02-07 10:25:30 CET by Kim Nguyen>
+  Time-stamp: <Last modified on 2013-03-04 16:38:27 CET by Kim Nguyen>
 *)
 
 (** 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