X-Git-Url: http://git.nguyen.vg/gitweb/?a=blobdiff_plain;f=benchmark%2Fconfig.ml;fp=benchmark%2Fconfig.ml;h=771981897c9a0b835c7cd4d5a6bb991ddaf3f683;hb=36154bd9b953b84d539d2505d94c414b2e3c72e6;hp=01aee85a4eee49b304fbfc8d2ae2208e7d623d20;hpb=7dea5fd8bedede27d4d601f85630a249bfab420b;p=SXSI%2Fxpathcomp.git diff --git a/benchmark/config.ml b/benchmark/config.ml index 01aee85..7719818 100644 --- a/benchmark/config.ml +++ b/benchmark/config.ml @@ -1,8 +1,8 @@ (* semi-colon separated list of input documents *) -let documents = [ "../tests/tiny.srx" ] +let documents = [ "../tests/tiny.xml" ] (* semi-colon separated list of XPath queries *) -let queries = [ "/*" ] +let queries = [ "//*[ contains(.//para//self::text(),\"international\") ]//para//acronym" ] (* I is the initial configuration @@ -16,12 +16,12 @@ module CONF : CONFIGURATION = struct let path = "." let result_basename = "test" - let num_runs = 1 + let num_runs = 2 let run_with_output = true let run_without_output = true end module I = INIT_TESTER (CONF) -module TEST = MK (SXSI) (I) +module TEST = MK (SXSI) (MK (SaxonBXQuery) (I))